Re: MDI Forms
- From: "Tony K" <king-tony2@xxxxxxxxxxxxxxxxx>
- Date: Thu, 21 Dec 2006 15:38:59 -0700
I read your posts back and forth from Garry and you and I fully understand where Garry is coming from. But, my problem is what you helped me fix. The user can still "RESTORE" the child window and see other child windows behind them, they can resize them, but the kind of app I'm making they will not have a use for seeing multiple windows. If they want to see which child windows they have open, they will have to click on the "Window" menu item and see the open windows.
Thank you again for helping me with that problem. It worked GREAT!!!
Tony K.
"Miro" <mironagy@xxxxxxxxxx> wrote in message news:uTQ9mLEJHHA.3264@xxxxxxxxxxxxxxxxxxxxxxx
A soon as I seen your question, I realized you had the same nightmare I ran into.
I am slowely teaching myself VB.net and I - for the life of me, couldnt figure out what I had done wrong. Seems it wasnt me at all !!! :-)
I am not sure if the same thing happens on non "MDI" apps, but I dont risk it anymore. I keep all my apps as "Normal", and
set it during code at runtime.
Glad to be of help.
Cheers
Miro
"Tony K" <king-tony2@xxxxxxxxxxxxxxxxx> wrote in message news:8E7135F6-6DAC-49B0-A3AF-25664C6A5726@xxxxxxxxxxxxxxxxYou are the MAN!! Thank you Miro. I have struggled with this on other MDI apps and went about it a much LONGER way. Thanks again.
Tony
"Miro" <mironagy@xxxxxxxxxx> wrote in message news:uB0tfv9IHHA.4384@xxxxxxxxxxxxxxxxxxxxxxxThis happend to me....
Are you using the Property to maximize? or doing it by code?
If you notice, it is actually showing you the form the exact size it is in development mode.
Try to show the form maximized thru code
fMain = New frmMain
fMain.WindowState = FormWindowState.Maximized
fMain.Show()
and leave the windowstate "Normal" on the property of the form.
Compile...
it should work,
Now if you get rid of the code, and change your property back to show "maximized" it should work.
After I ran into this...i always show all my forms maximized thru code ( like above ) and leave all my forms "Normal", and it has never happend since.
Lemmi know if this fixed you as well. Im sure others will run into this too.
Miro
"Tony K" <king-tony2@xxxxxxxxxxxxxxxxx> wrote in message news:54AB4FAF-F465-4E1D-ACCA-497CF03F9623@xxxxxxxxxxxxxxxxHow do you maximize a child form when you show the child form. My resolution on my screen is 1440 x 900. My parent form maximizes just fine, but when I show a child form it doesn't maximize. It doesn't separate itself from the child form, meaning you can't move it around like if the form was "restored" but it doesn't take up all the space available.
I do not have the maximum or minimum size set in the properties, but I do have the WindowState set to Maximized. I also have the size property set to 800 x 600 and that is the size that the form starts up as.
Any answers would be greatly appreciated.
Thanks, Tony
.
- References:
- MDI Forms
- From: Tony K
- Re: MDI Forms
- From: Miro
- Re: MDI Forms
- From: Tony K
- Re: MDI Forms
- From: Miro
- MDI Forms
- Prev by Date: regex editor
- Next by Date: Re: regex editor
- Previous by thread: Re: MDI Forms
- Next by thread: Re: Shared Events
- Index(es):
Relevant Pages
|