|
-
May 3rd, 2004, 12:59 PM
#1
Thread Starter
New Member
Form disappears if you click off the form. Help!!
I have a VB.Net application that uses mdi. We have two forms that are called by child forms. When you click off of the called forms, they disappear. They are there, but you have to minimize all the other windows to the desktop to view the form. I need the form to still be there once you go back to the VB.NET application. Any help would be greatly appreciated.
Thanks, Randy
-
May 4th, 2004, 08:59 AM
#2
PowerPoster
Hi,
Have you tried altering the location of the two forms so that they lie outside of the MDI forms?
Taxes
The more I learn about VB.NET the more I like dBaseIII Plus
The foregoing, whilst believed to be correct, is given without guarantee as to it's accuracy and entirely without recourse. You are required to decide for yourself whether or not it is suitable for your purposes and no liability for loss of any nature can be entertained.
-
May 4th, 2004, 09:44 AM
#3
Fanatic Member
before calling the child form set its mdiparent property.
in ur child form... in the event from where the other form is called
VB Code:
FormToBeCalled.MdiParent = Me.MdiParent
FormToBeCalled.Show
hope it helps
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
|