i'm using visual basic 6 and i have these simple project:
Code:
Option Explicit

Private Sub Form_GotFocus()
     MsgBox "Hello"
End Sub

Private Sub Form_LostFocus()
    MsgBox "Bye"
End Sub
why the LostFocus form Event is ignored?(i don't know if these is importante: i don't have any updates installed..)
thanks