Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Child Form Question

Status
Not open for further replies.

jake007

Programmer
Jun 19, 2003
166
US
I am using an MDI Parent/Child Form schema for an app. My question is, Is there a way to make the child form have no size controls? No mater what I do, the size controls show up, even if maximizebox and minimize box are set to false, as soon as the child form is maximized (when it is loaded) the buttons show up, even though they are not usable.

Even better, can the child form be made to have no titlebar at all?

FormBorderStyle = None does not resolve this either.

Jake.
 
If I understand correctly, setting the following properties will do it:

FormBorderStyle = FixedToolWindow
ControlBox = False
 
Forgot something...remove the text from the Text property to remove the title bar.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top