How can I remove the blue border that's on top of the Window Form? (I don't know the name of it exactly.)
if by Blue Border thats on top of the Window Form you mean titlebar, set Forms ControlBox property to false and Text property to empty string ("").
Actually you can hide the title bar during runtime (i found a way to do this), by hiding the form before you change the borderstyle to 0(/none) and then show it back again. I used a checkbox to toggle it from 0 to 1/2/3/4/5. AND it works even if it has a value in TEXT property. BTW I'm using vb.net 2008.
First, select the form. Then, go to the properties menu. And change the property "FormBorderStyle" from sizable to Fixed3D or FixedSingle.
You can set the Property FormBorderStyle
to none in the designer, or in code:
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With