C# form caption
-
I am to remove the caption bar from a C# form (VS2005). I've set control box to false and removed the Text Field. The caption is gone but the problem is I can't put i title in the Taskbar. Does anyone know how to do this?
-
I am to remove the caption bar from a C# form (VS2005). I've set control box to false and removed the Text Field. The caption is gone but the problem is I can't put i title in the Taskbar. Does anyone know how to do this?
Set the 'ControlBox' property to false, Set the 'FormBorderStyle' property to None and Set the title in 'Text' property. Regards, Bhupi Bhai.
-
Set the 'ControlBox' property to false, Set the 'FormBorderStyle' property to None and Set the title in 'Text' property. Regards, Bhupi Bhai.
The problem with that is the form is then not resizable, in my current task I need it to be resizable, do you know how to get past this? Regards, Chris McGrath