Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs.
If you have limited programming experience, you may want to contact a Microsoft Certified Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites:
Microsoft Certified Partners -
https://partner.microsoft.com/global/30000104Microsoft Advisory Services -
http://support.microsoft.com/gp/advisoryserviceFor more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:
http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMSHow to Create a UserForm
- Save and close any open workbooks, and then create a new workbook.
- Start the Visual Basic Editor (press ALT+F11).
- On the Insert menu, click UserForm.
This step inserts UserForm1 into the project. - Add a command button control to the UserForm.
- Change the properties of the command button to the following:
Property Value
--------------------
Caption Hide Form
Name cmdHide
- Add another command button control to the UserForm.
- Change the properties of the command button to the following:
Property Value
----------------------
Caption Unload Form
Name cmdUnload
- Add a text box control to the UserForm.
Sample Macro for Hiding the UserForm
- Double-click the cmdHide command button on UserForm1.
- Type the following code for the cmdHide Click event:
Private Sub cmdHide_Click()
UserForm1.Hide
End Sub
- Type the following code for the cmdUnload Click event:
Private Sub cmdUnload_Click()
Unload UserForm1
End Sub
- On the Insert menu, click Module.
- Type or paste the following code into the module sheet:
Sub Show_Form()
UserForm1.Show 'Display the UserForm
Do
response = MsgBox("Do you want to redisplay the form?", _
vbYesNo)
If response = vbYes Then
UserForm1.Show 'Redisplay the UserForm.
End If
Loop Until response = vbNo 'Do not redisplay the UserForm.
End Sub
- Run the Show_Form macro.
- Type text in the text box control.
- Click Hide Form.
- When you are prompted about whether to redisplay the UserForm, click Yes.
The UserForm reappears, and the text in the text box is retained. - Click Unload Form.
- When you are prompted about whether to redisplay the UserForm, click Yes.
The UserForm reappears, but the text in the text box is not retained. - Click Unload Form.
- When you are prompted about whether to redisplay the UserForm, click No.
The UserForm is not redisplayed, and the macro ends.