W William C. Smith Aug 30, 2003 #1 Is there a VBA command that will close a userform, the equivalent of the user clicking the close button on the form title line?
Is there a VBA command that will close a userform, the equivalent of the user clicking the close button on the form title line?
B Bradley Dawson Aug 30, 2003 #3 You may also want to try the Hide method. It keeps the form in memory, so entries do not get erased, but removes the form from view. UserForm1.Hide
You may also want to try the Hide method. It keeps the form in memory, so entries do not get erased, but removes the form from view. UserForm1.Hide
W William C. Smith Sep 2, 2003 #4 @tk2msftngp13.phx.gbl: Thanks for the help. Unload userformname works fine. I did not try Unload Me on the form's code page, but I could not find any reference to Unload Me in VBA help. Again, thanks.
@tk2msftngp13.phx.gbl: Thanks for the help. Unload userformname works fine. I did not try Unload Me on the form's code page, but I could not find any reference to Unload Me in VBA help. Again, thanks.