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

How to display a control outside of a form?

Status
Not open for further replies.

xcduan

Programmer
May 21, 2002
8
0
0
US
I would like to display a picturebox to user, but don't like to use the common form due to its title bar and border.

Is there any way I can display a control to user without using a form? Or can I set some properties of the form to hide its title bar and border? How?

Thanks a lot!

Neo

 
You can set the FormBorderStyle property to none:
Code:
this.FormBorderStyle = FormBorderStyle.none;

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top