Hey there,


The main form in my application is a small form without a titlebar. I accomplished this by setting these properties:
- ControlBox = False
- MinimizeBox = False
- MaximizeBox = False
- Text = "" (empty)

As long as the Text (title text) remains empty, the form has no title bar. Note that it still has a border so it can be resized (FormBorderStyle = Sizable, as usual, not None!)


Now, because I have to keep the Text property empty, the taskbar button never shows any text... But I want to show text in the taskbar button!

As far as I know, the only way to set the text on the taskbar button is using the forms Text property, but I cannot set that because the form will have a titlebar if I do...


Is there no way around this?
Can I have a form without a titlebar (caption, or whatever it's called), but still with text in the taskbar button?