Show a Status Bar

N

Noemi

Hi

I was hoping someone could explain how to show a status bar which allows the
user to see that a program is currently running.

I have developed a code and when it is running the hour glass doesn;t show
therefore I would like to build a status bar to show the user that the system
is currently running.

Thanks
Noemi
 
A

Allen Browne

You can show the busy cursor with:
DoCmd.Hourglass True

Use Echo to show a message in the status bar while the code is running,
e.g.:
DoCmd.Echo True, "Please wait..."
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top