Userform question

R

Robert Crandal

Can anybody explain the differences between
showing/loading a userform along with hiding/unloading
a userform??

I'm guessing that a "load" will create the form in
memory but it remains non-visible?? Does that
mean that a call of "Userform1.Show" loads it
in memory AND makes it visible??
 
J

joel

Show : Calls the userform initialize function the first time and no
afterwards and displays the userform

Load : Is the same as show but doesn't display the userform.

Hide : Exits the userform and keeps it in memory so the next time it i
Show/Load is performed it will not run the initialize function

UnLoad : Exits the userform and doesn't keeps it in memory so the nex
time it is Show/Load is performed it will run the initialize function.

Visibile = True : Just makes the loaded userform visible

Visibile = False : Just makes the loaded userform invisibl
 

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

Top