It's my understanding that Form Load event takes place when the form is
loading. I want to know the instance a form has completed loading and is
ready for user interaction.
That's true, Load fires right before the form is displayed. You might be
able to get away with handling the Activate or Enter events, but those can
happen multiple times during a form's lifetime.
\\\
Private Sub Form1_Activated( _
ByVal sender As Object, _
ByVal e As EventArgs _
) Handles MyBase.Activated
Static IsActivated As Boolean
If Not IsActivated Then
IsActivated = True
MsgBox("Foo")
End If
End Sub
///
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.