How to display status

R

Rover

I have a long running form that runs a number of queries. I want to
display what query is running. Is there a way to put that information
in the status bar? If I put it on the form, how do I get it to update
the display immediately?

TIA

Jim
 
A

Allen Browne

Use Echo to put a message in the status bar.

If you write it to a text box or label on your form, force it to display
with:
Me.Repaint
 
M

Marshall Barton

Rover said:
I have a long running form that runs a number of queries. I want to
display what query is running. Is there a way to put that information
in the status bar? If I put it on the form, how do I get it to update
the display immediately?


You can use the SysCmd function to place a text string in
the status bar.
 

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