Trap status bar changes

B

Brian

I know how to manipulate status bar text using SysCmd, but is there:

1. Any event associated with a change in the status bar content, or
2. Some way to log or halt on a change there, or
3. Any way to find out what triggered the change of text?

There are times when some status bar text will flash by so fast that I
cannot read it. I sometimes need to find out what is triggering it (such as
whether a calculated control is being recalculated, a query is being run,
etc.), and at least being able to force a pause long enough to read it (e.g.
pop up a message box with the status bar text any time it changes) might help
diagnostically, although it would be even better to be able to retrieve
information concerning the event that caused it.
 
S

Stuart McCall

Brian said:
I know how to manipulate status bar text using SysCmd, but is there:

1. Any event associated with a change in the status bar content, or
2. Some way to log or halt on a change there, or
3. Any way to find out what triggered the change of text?

There are times when some status bar text will flash by so fast that I
cannot read it. I sometimes need to find out what is triggering it (such
as
whether a calculated control is being recalculated, a query is being run,
etc.), and at least being able to force a pause long enough to read it
(e.g.
pop up a message box with the status bar text any time it changes) might
help
diagnostically, although it would be even better to be able to retrieve
information concerning the event that caused it.

No. In all versions of Access, all you can do is write text to it, or use it
as a progress meter.
 
J

Jack Leach

you can hide it altogether if that helps...

Application.SetOption "Show Status Bar", False


--
Jack Leach
www.tristatemachine.com

"I haven''t failed, I''ve found ten thousand ways that don''t work."
-Thomas Edison (1847-1931)
 

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