How do I get rid of my form from the screen?

  • Thread starter Thread starter Tony
  • Start date Start date
T

Tony

Hi,

I can't figure out to do this. Any help on the VBA
appreciated.

Thanks,
Tony
 
Hi

if you're talking about a userform try

Unload Userform1

or
Unload Me

Cheers
JulieD
 
or to just hide it without unloading it (presuming the form is called
'Userform1'): -

Userform1.hide
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top