|
-
Apr 11th, 2001, 07:23 PM
#1
Thread Starter
Frenzied Member
Anyone know how to do this?
-
Apr 11th, 2001, 07:25 PM
#2
Fanatic Member
Try
opening the form as vbmodal from the first form.
-
Apr 11th, 2001, 07:26 PM
#3
New Member
hey
hey,
When you open the form you want to pause, open it like so:
Code:
Load Form2
Form2.show vbmodal, me
VbModal tells VB that the Form2 must be closed before Form1 gets focus back. Me is a reference to Form1
hope that helps
Nick
-
Apr 11th, 2001, 07:29 PM
#4
Hyperactive Member
If the forms are "related", that is one loads/shows the other you can do this:
FormA shows the next form:
formB.show vbmodal, me
Form B will not appear and form A will be "paused" until Form B is unloaded.
Look in on-line help for better descriptions of vbModal...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|