Setting | Value | Description | |
Manual | 0 | No initial setting specified. | |
CenterOwner | 1 | Center on the item to which the UserForm belongs. | |
CenterScreen | 2 | Center on the whole screen. | |
Windows Default | 3 | Position in upper-left corner of screen. |
Private Sub UserForm_Click()
Load UserForm2
UserForm2.StartUpPosition = 3
UserForm2.Show
End Sub