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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Removing the header of a form ?

Status
Not open for further replies.

Frankyboy2

Programmer
Jul 26, 2002
1
DK
Hi all,
Im desperately trying to somehow remove the header of a standard form (the blue gradient with the icon and min/max buttons). Since im very new to c# i'd hope that one of you out there might point me in the right direction. Any help appriciated.

Thanks in advance!,

Frank
 
I think you can get away with just doing this:
Code:
MyForm.FormBorderStyle = FormBorderStyle.FixedSingle;
But you might have to also set the ControlBox, MaximizeBox, MinimizeBox, and HelpButton properties to false.

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top