G
Guest
Hey all,
I've created a timer-powered "Please Wait" form in Access 2000. I want to be
able to use it whenever I have a process that's going to take some time -
long loops and whatnot.
Here is the code I use -
DoCmd.Hourglass True
DoCmd.OpenForm "frmWait", acNormal
' Big convoluted loop
The form opens (well, at least the caption bar and border do) but it never
fills in so you can't see the message on the "Please Wait" form.
If I open the form as a dialog (modally), then it loads and displays
properly. However, as would be expected, the code on the calling form stops
executing, which kind of defeats the purpose.
I tried seeting the "Pop Up" property of frmWait, but it doesn't seem to
make a difference.
Is there any way that I can have one form loaded in the foreground, while
the code behind another form runs in the background?
I've created a timer-powered "Please Wait" form in Access 2000. I want to be
able to use it whenever I have a process that's going to take some time -
long loops and whatnot.
Here is the code I use -
DoCmd.Hourglass True
DoCmd.OpenForm "frmWait", acNormal
' Big convoluted loop
The form opens (well, at least the caption bar and border do) but it never
fills in so you can't see the message on the "Please Wait" form.
If I open the form as a dialog (modally), then it loads and displays
properly. However, as would be expected, the code on the calling form stops
executing, which kind of defeats the purpose.
I tried seeting the "Pop Up" property of frmWait, but it doesn't seem to
make a difference.
Is there any way that I can have one form loaded in the foreground, while
the code behind another form runs in the background?