|
-
Nov 9th, 1999, 06:18 AM
#1
Thread Starter
New Member
How can I make a form a model form for my application? Like how a message box and be set to vbApplicationModal.
-
Nov 9th, 1999, 08:49 AM
#2
Hyperactive Member
Use something like this:
Private Sub Command1_Click()
frmAbout.Show vbModal, Me
End Sub
The vbModal specifies that the form should be a Modal form and the Me is the Owner Form. If you wanted the form to be modal to another form, replace Me with its name.
------------------
Tom Young, 14 Year Old
[email protected]
ICQ: 15743470
AIM: TomY10
PERL, JavaScript and VB Programmer
[This message has been edited by Compwiz (edited 11-09-1999).]
-
Nov 9th, 1999, 08:49 AM
#3
MYForm.Show vbModal
------------------
Marty
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
|