|
|
Title | Make an MDI child form that displays only the system close button and no system menu |
Description | This example shows how to make an MDI child form that displays only the system close button and no system menu in Visual Basic 6. The user can close the form but not resize it. |
Keywords | MDI, MDI child, close button, system menu, remove system menu |
Categories | Controls |
|
|
Set the form's:
- MinButton = False
- MaxButton = False
- BorderStyle = Fixed Dialog
- Icon = (None)
To set the icon, select the icon value in the Properties window and press Delete.
This will make the form display the close button but not the others and not the system menu.
|
|
|
|
|
|