Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Displaying a UserForm
To display a UserForm from VBA, you create a procedure that uses the Show method of the UserForm object. If your UserForm is named UserForm1, the following procedure displays the dialog box on that form:
Sub ShowForm()
UserForm1.Show
End Sub
This procedure must be located in a standard VBA module and not in the code module for the UserForm.
When the UserForm is displayed, it remains visible on-screen until it's dismissed. Usually, you'll add a CommandButton control to the UserForm that executes a procedure that dismisses the UserForm. The procedure can either unload the UserForm (with the Unload command) or hide the UserForm (with the Hide method of the UserForm object). This concept will become clearer as you work through various examples in this and subsequent chapters.