PDA

View Full Version : Solved: Splash Screen



Djblois
03-08-2007, 07:32 AM
I want to be able to have a splash screen as my add-in installs but right now whenever I have a form show up all the code stops. How do I get the code to run in the background while my splash screen is up?

Charlize
03-08-2007, 07:51 AM
userform1.show 0

Bob Phillips
03-08-2007, 08:02 AM
It will, but you need to have code to automatically close down the form from within the form, issuing an OnTime command from the form initilaisation.

Charlize
03-08-2007, 08:07 AM
some code
userform1.show 0
code to execute and you have to wait
at the end of the code use the next line
unload userform1

Djblois
03-08-2007, 08:17 AM
Thank you that worked perfectly