Solution - MDI Child - Hide Controlbox, Minimize/Maximize

T

theintrepidfox

Dear Group

After browsing through posts and a great headache I finally found a
solution to an often asked question. Not claiming I invented it (LOL)
but posting for future reference,

HTH, M

Put this in your childs Form_Load Event

Me.WindowState = FormWindowState.Maximized
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.ControlBox = False

Should do the trick :)
 

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

Top