I have a 2 tabpage :
tapPage 1 :
one combobox with a keydown event :
Private Sub cbClients_KeyDo wn(ByVal sender As Object, ByVal e As
System.Windows. Forms.KeyEventA rgs) Handles cbClients.KeyDo wn
If e.KeyValue = System.Windows. Forms.Keys.Retu rn Then
messagebox("Hel lo")
end if
end sub
in second tapPage : one form with a button...
PROBLEM :
When i submit the form in tapPage 2.... and after i return
TapPageOne... the keyDown of the combobox doesn't fired !!!! ????
That's so strange... and i don't know how to resolve my problem :(
tapPage 1 :
one combobox with a keydown event :
Private Sub cbClients_KeyDo wn(ByVal sender As Object, ByVal e As
System.Windows. Forms.KeyEventA rgs) Handles cbClients.KeyDo wn
If e.KeyValue = System.Windows. Forms.Keys.Retu rn Then
messagebox("Hel lo")
end if
end sub
in second tapPage : one form with a button...
PROBLEM :
When i submit the form in tapPage 2.... and after i return
TapPageOne... the keyDown of the combobox doesn't fired !!!! ????
That's so strange... and i don't know how to resolve my problem :(
Comment