Hi, another dorky question from me.

Using VB 6

-------------------------------------

I would like to use an "If" statement to handle
the loading & showing of a form.

Something like:

Private Sub HandleForm()

Load Form1

If ***Form1 has completely loaded*** Then
Form1.Show

End Sub

-------------------------------------

I'm want to handle a form in this manner, because my program will be executing other stuff while Form1 is loading.

Thanks!!!