|
-
November 25th, 1999, 10:04 AM
#1
How do i change modaless form to modal
How do i change modaless form to modal?
-
November 25th, 1999, 07:17 PM
#2
Re: How do i change modaless form to modal
Use Show method of form with vbModal parameter. This is an example:
frmForm.Show vbModal, MDIMain' frmForm will be displayed as Modal, MDIMain is a parent form
Vlad
-
November 28th, 1999, 02:00 AM
#3
Re: How do i change modaless form to modal
Maybe i didn'y clarify my question. I want to show the form with vbModeless but that it will behave as a Modal.
-
November 28th, 1999, 07:11 AM
#4
Re: How do i change modaless form to modal
Disable the window that shows the window.. uhmmm
Me.Enabled = False
MyForm.Show vbModeless, Me
Now you only need to figure a way to tell the Me form when MyForm is done... I usually use an event for such things.
Crazy D :-)
"One ring rules them all"
-
November 28th, 1999, 09:06 AM
#5
Re: How do i change modaless form to modal
-
November 29th, 1999, 12:30 AM
#6
Re: How do i change modaless form to modal
Hi,
I am just curious... Can you explain the case a little more please.. where & why you are showing a form Modeless and you want to behave it modal.!
I couldn't figure out one...
RK
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
|