Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Splash Screen in Word

Status
Not open for further replies.

stsuing

Programmer
Aug 22, 2001
596
US
How do I show a splash screen first thing in word.I want give my data connections and forms couple seconds to connect and not look like the computers locked up.

I need to know the objects to put the load, show, and hide methods.

Thanks
 
Use the Auto_Open macro to initiate your form, do your connection procedure, and close the form.

Sub Auto_Open()

UserForm1.Show

'Your Connection Commands

UserForm1.Hide

End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top