|
-
Oct 17th, 2002, 02:29 AM
#1
Thread Starter
Lively Member
Halt code execution when window open
I need to halt my code when a certain Form is open....
When you show a MsgBox the code execution halts.
I want this to happen with a certain form aswell...when it's closed the code execution should continue.
-
Oct 17th, 2002, 02:40 AM
#2
Form that opens the other form
[Highlight=VB]
Private Sub cmdOpenForm_Click()
MsgBox "Opening...."
Form2.Show vbModal, Me
MsgBox "Closed"
End Sub
[Highlight=VB]
-
Oct 17th, 2002, 03:12 AM
#3
Thread Starter
Lively Member
Thanks a lot! Worked fine
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
|