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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Startup form won't load correctly 1

Status
Not open for further replies.

EvilCabal

Programmer
Jul 11, 2002
206
CA
Hey,

When my database is opened, there is some loading to do. So I created a SplashScreen form to distract to user from this loading time. But access only shows the border of the form and wait for all loading to finish before loading the contents of the form... Pretty useless!

I also have the same problem when performing operations that demands some time. If I try to pop-up up form that says "Updating..." while stuff is being processed, I only see the border of the form, the rest won't load.

Please help I'm clueless.
 
If your startup form is loading the splash screen, in the line after the Docmd.Openform "YourSplashScreenName", use:

YourSplashScreenName.Repaint


If your splash screen is now the startup form, in the splash screen's on load event use:

Me.Repaint
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top