在Windows窗体中,我有一个文本框和一个组合框,第一个用于文件夹名称,第二个用于子文件夹,我想当我输入名称forlder时,自动组合框包含子文件夹的名称。
但是我的问题,文本框中的textchanged事件,只取第一个caractere
这是我的代码
Private Sub nom_dossier_TextChanged(sender As Object, e As EventArgs) Handles nom_dossier.TextChanged
If (nom_dossier.Text="") Then
MessageBox.Show("Erreur , Ce dossier n'existe pas ", "Avertissement", MessageBoxButtons.OK, MessageBoxIcon.Error)
Else
nom_sous_dossier.Items.Add(nom_sdossier.Text)
end sub