How do I hide MDI Child Icon when maximized in parent MDI form?

ROMIO

Member
Joined
Sep 3, 2006
Messages
7
Programming Experience
Beginner
Hi forum,
(MDI) How can I hide child window title bar "icon" when maximized into its parent
 
the question is why would you want to hide it?

if you need to hide it then you're not needing an MDI application in the first place. you can have multiple forms open and able to be used in one application at the same time without it being an MDI app
 
ah, i'm sorry i didnt see the word "icon" in the title or in the post, my bad

i actually dont know how to hide it, but i could do a google search in a few minutes
 
this is as far as i got:
http://www.vbforums.com/archive/index.php/t-410774.html

"It's not possible using .NET properties or methods as far as I'm aware. That icon is there so that you can click it to get the system menu for the child form. Even if you set the ControlBox property to False, which removes the system menu, Close button, etc. when the form is in a normal state, that icon is still visible and you can still click it to display the system menu. If it's possible to get rid of it it would require using the Windows API."
 
Back
Top