Showa "loading" message while a report/query is still running

mab9

Registered User.
Local time
Yesterday, 21:58
Joined
Oct 25, 2006
Messages
63
Not sure if this is the right forum for this. I have a switchboard that one of the buttons is tied to run a specifc report. Once the user clicks this button, is there a way to show a loading bar so they know its on the way (outside of the loading bar in the lower left). I'm looking to make it obvious to someone who's never used Access before that the report it coming up. Any ideas?
 
any chance of having this in VBA code?
 
To do it with VBA code, all you need to do is create a form with the properties specified in the MSDN article. Put a label on it that says "Please Wait" or whatnot. Then make the button on the switchboard open the form instead of the report, and use the form's timer event to open the report after 1 milisecond, that way the form comes up, displays its text and stays there while the report is loading. You can put code into the reports load event that closes the form.
 
Thanks! I'll give it a shot.
 

Users who are viewing this thread

Back
Top Bottom