Animation

L

Leo Bonderchuck

I would like to have a splash screen (or ???) come up with
an animation while the "stuff" on the on load event runs
on the start up of the database.

Is this doable?


tia

Leo
 
W

Wayne Morgan

It is doable. The problem is that VBA isn't multi-threaded, so the "stuff in
the On Load event" will probably tie up the computer to the point that the
animation won't run well. You would probably need to put several DoEvents
statements in the Load event routine to release control to the animation.
 
Top