Can't maximize

T

Tony K

I have a Windows MDI app with child forms. When opening the child forms,
the child form is not maximized inside the parent form. What
property/setting am I missing?

The child form size opens with the settings for the "SIZE" property but I
also have the WindowState set to Maximized.

Thanks,
Tony K
 
M

Miro

I have run into this before.

Setting the property didnt actually work.

I had to do it by code prior to the show. That worked.
As of that moment I have made all my forms "hardcoded" to show it maximized.
I do not trust that property
under mdi.

fMain = New frmMain
fMain.MdiParent = Me
fMain.WindowState = FormWindowState.Maximized // This is
what I have hardcoded and resolved the issue.
fMain.Show()


Miro
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top