G
GS
on a control, keydown was never triggered
Private Sub addressBar_KeyDown(ByVal sender As Object, ByVal e As
System.Windows.Forms.KeyEventArgs)
....
end sub
on the hand the following got executed
Private Sub addressBar_textchanged(ByVal sender As Object, ByVal e As
System.EventArgs) Handles addressBar.TextChanged
wasUrlTyped = True
setStatus("address changed")
End Sub
BTW the adressbar1 is a combobox
do I have initialize something first?
Private Sub addressBar_KeyDown(ByVal sender As Object, ByVal e As
System.Windows.Forms.KeyEventArgs)
....
end sub
on the hand the following got executed
Private Sub addressBar_textchanged(ByVal sender As Object, ByVal e As
System.EventArgs) Handles addressBar.TextChanged
wasUrlTyped = True
setStatus("address changed")
End Sub
BTW the adressbar1 is a combobox
do I have initialize something first?