Resizable Form Without FormBorderStyle (None)
-
I need to be able to resize my form but i don't want the ControlBox to be visible... I've tried set ControlBox = False, FormBorderStyle = Sizeable, and Text = (Empty)... But i still could see the small thin border surrounding the form. I need to make it completely disappear, just like when using FormBorderStyle = None Is that possible??? Please helpppp Thanks:)
-
I need to be able to resize my form but i don't want the ControlBox to be visible... I've tried set ControlBox = False, FormBorderStyle = Sizeable, and Text = (Empty)... But i still could see the small thin border surrounding the form. I need to make it completely disappear, just like when using FormBorderStyle = None Is that possible??? Please helpppp Thanks:)
Not without digging down into some ugly Win32 APIs. Why not set the FormBorderStyle to None and write your own resize code?
If my answer has helped you, one of my articles may also be a help. Also remember that your best friend's name is google.