Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Progress Form As VBModal
Message
From
04/10/2000 13:02:28
 
 
To
04/10/2000 11:20:40
General information
Forum:
Visual Basic
Category:
Other
Miscellaneous
Thread ID:
00424764
Message ID:
00424853
Views:
15
In the first form, load the second form
In the Load Event of the second form, do a Me.Show and a DoEvents
Do your stuff in the first form

Ex:
Form1 And Form2
Form1:
Private Sub Command1_Click()
Load Form2
MsgBox "Hello from Form1"
End Sub

Form2:
Private Sub Form_Load()
Me.Show
'SetWindowPos() if you want
DoEvents
MsgBox "Hello from Form2"
End Sub
Hope that this is what you want...
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform