how to remove title bar on win form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to not show the title bar at all in a win form? I tried
setting the text property to an empty string (another post mentioned that it
happened to him when he set the text to an empty string), but the title bar
is still there.
thanks
gv
 
Figured it out, the control box property has to be set to false, as well as
the text being blank.
 
Set ControlBox to false in addition to setting the text property to the
empty string.
 
Additionally, setting the FormBorderStyle to None will remove the title
bar, regardless of the ControlBox or the Text properties being set.

Hope this helps.
 
Hi,
Set Text property to an empty string and set ControlBox property to false.
This will remove the caption.
 
Back
Top