XL98: How to Temporarily Hide a UserForm

ID: Q184986


The information in this article applies to:


SUMMARY

If you use the Hide method to hide a custom dialog box in earlier versions of Microsoft Excel, Microsoft Excel does not hide the dialog box until the macro that contains the Hide method is finished running.

In Microsoft Excel 98, if you use the Hide method to hide a UserForm, the UserForm is hidden immediately. You can redisplay the UserForm by using the Show method in the macro (or in another macro). You can also use the Unload statement to hide a UserForm; however, any settings in the UserForm are lost. Note that you may want to use the Unload statement if you want to reset the UserForm.

This article explains how to create a UserForm and contains a sample Visual Basic for Applications macro that temporarily hides the UserForm (by using the Hide method and the Unload statement).


MORE INFORMATION

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 Solution Provider or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Solution Providers, please see the following page on the World Wide Web:

http://www.microsoft.com/mcsp/
For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

http://www.microsoft.com/support/supportnet/overview/overview.asp

Creating the UserForm

To create the UserForm, follow these steps:

  1. Save and close any open workbooks, and then create a new workbook.


  2. Start the Visual Basic Editor (press ALT+F11).


  3. On the Insert menu, click UserForm.

    This step inserts UserForm1 into the project.


  4. Add a CommandButton control to the UserForm.


  5. Change the properties of the CommandButton to the following.


  6. 
          Property   Value
          --------------------
    
          Caption    Hide Form
          Name       cmdHide 
  7. Add another CommandButton control to the UserForm.


  8. Change the properties of the CommandButton to the following.


  9. 
          Property   Value
          ----------------------
    
          Caption    Unload Form
          Name       cmdUnload 
  10. Add a TextBox control to the UserForm.


Sample Macro for Hiding the UserForm

To use the macro, follow these steps:
  1. Double-click the cmdHide button on UserForm1.


  2. Type the following code for the cmdHide Click event:


  3. 
    Private Sub cmdHide_Click()
        UserForm1.Hide 
    End Sub 
  4. Type the following code for cmdUnload Click event:


  5. 
    Private Sub cmdUnload_Click()
        Unload UserForm1
    End Sub 
  6. On the Insert menu, click Module.


  7. Type the following code into this module:


  8. 
    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 
  9. Run the Show_Form macro.


  10. Type text in the TextBox control.


  11. Click Hide Form.


  12. When you are prompted to redisplay the UserForm, click Yes.

    The UserForm reappears, and the text in the TextBox is retained.


  13. Click Unload Form.


  14. When you are prompted to redisplay the UserForm, click Yes.

    The UserForm reappears, but the text in the TextBox is NOT retained.


  15. Click Unload Form.


  16. When you are prompted to redisplay the UserForm, click No.

    The UserForm is not redisplayed, and the macro ends.


For additional information about hiding dialog boxes in earlier versions of Microsoft Excel, please see the following article in the Microsoft Knowledge Base:
Q141506 XL: How to Temporarily Hide a Dialog Box


REFERENCES

For more information about hiding UserForms, click the Office Assistant, type "hide," click Search, and then click to view "Hide Method."

For more information about unloading UserForms, click the Office Assistant, type "unload," click Search, and then click to view "Unload Statement."

Additional query words: XL97 XL98 UserForm Hide vba


Keywords          : kbprg kbdta xlvbahowto xlvbainfo OffVBA 
Version           : MACINTOSH:98
Platform          : MACINTOSH 
Issue type        : 

Last Reviewed: July 16, 1999