FormBorderStyleConstants
Border-and-frame style values for the BorderStyle property of forms, choosing what kind of window decoration the form has and whether the user can resize it.
| Constant | Value | Description |
|---|---|---|
| vbBSNone | 0 | The form has no border, title bar, or system menu. |
| vbFixedSingle | 1 | A single-line, non-resizable border with a normal title bar. |
| vbSizable | 2 | A resizable border with a normal title bar (the default for forms). |
| vbFixedDialog | 3 | A dialog-style fixed border. |
| vbFixedToolWindow | 4 | A non-resizable tool-window border with a small title bar. |
| vbSizableToolWindow | 5 | A resizable tool-window border with a small title bar. |
| vbSizableNoTitleBar | 6 | A resizable border without a title bar. (twinBASIC addition.) |
| vbSizableToolWindowNoTitleBar | 7 | A resizable tool-window border without a title bar. (twinBASIC addition.) |