|
-
Jun 29th, 2005, 08:43 PM
#1
Thread Starter
Member
MDIForm, modals... *[RESOLVED]*
Well, i hope someone can help me. I need to make some MDIChild forms modals, I've reading in msdn that this is not posible. But i don't know if it is not posible at all or if it is posible somehow. I've been searching whitout sucess on this topic, but i guess mdi forms are not that popular...
And one more thing, how can i know which forms (again MDIChild forms) are open at any given point?
Well thanks to u all!!
bye, Matias.-
Last edited by Matias; Jun 29th, 2005 at 09:22 PM.
-
Jun 29th, 2005, 08:44 PM
#2
Re: MDIForm, modals...
Why do you want to show MDIChilds modally?
-
Jun 29th, 2005, 08:55 PM
#3
Re: MDIForm, modals...
MDI child form cannot be modal. You cannot even make it to be the topmost child form ...
To know which forms are loaded use Forms collection (sample is not tested):
VB Code:
Dim frm as Form
For Each frm In Forms
If frm.MdiChild = True
debug.Print frm.Name
End If
Next frm
-
Jun 29th, 2005, 09:07 PM
#4
Thread Starter
Member
Re: MDIForm, modals...
thanks RhinoBull, i'll try that.
 Originally Posted by dee-u
Why do you want to show MDIChilds modally?
Nothing special, i mean, because some forms are opened from other forms, and i need that the ones that where opened in the first place, remain open until the ones that were opened last are closed...
-
Jun 29th, 2005, 09:09 PM
#5
Re: MDIForm, modals...
You could still use non-MDIChild forms in MDI environment apps then show them modally.
-
Jun 29th, 2005, 09:22 PM
#6
Thread Starter
Member
Re: MDIForm, modals...
 Originally Posted by dee-u
You could still use non-MDIChild forms in MDI environment apps then show them modally.
You know... that's actually a very good point.. i didn't see that.
Thanks dee-u
-
Jun 29th, 2005, 09:26 PM
#7
Re: MDIForm, modals... *[RESOLVED]*
Well, I'm glad to impart a new lesson for you.
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
|