Show a Status Bar

  • Thread starter Thread starter Noemi
  • Start date Start date
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
 
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..."
 
Back
Top