ralphmacchio
03-19-2003, 02:29 PM
Here is a problem I've been working on for awhile...
I have some code running, say it is this
Sub main()
Load Form1
Form1.Visible = true
MsgBox "Form 1 has finished processing"
End Sub
Now in Form 1 I have some text fields to enter customer information. But what happens is that the form is showing and then RIGHT after that the msgbox is popping up (out of order)....
this might be a bad example, but basically what i'm asking is: Is there some way to pause the code in Sub Main from running until Form1 has been processed?
Thanks,
ralph m.
I have some code running, say it is this
Sub main()
Load Form1
Form1.Visible = true
MsgBox "Form 1 has finished processing"
End Sub
Now in Form 1 I have some text fields to enter customer information. But what happens is that the form is showing and then RIGHT after that the msgbox is popping up (out of order)....
this might be a bad example, but basically what i'm asking is: Is there some way to pause the code in Sub Main from running until Form1 has been processed?
Thanks,
ralph m.