Status Bar

D

DJS

In Table (Datasheet view) is it possible to change the status message ? I
view many forms in datasheet view and have a double-click routing on many
cells, ideally I'd like to show which query or macro is currently running,
in the status bar.
Thanks in advance !
 
G

Guest

Dim SBText As Variant
SBText = SysCmd(acSysCmdSetStatus, "yourQueryName")
DoCmd.OpenQuery "yourQueryName"
SBText = SysCmd(acSysCmdClearStatus)
 
W

Wolfgang Kais

Hello "DJS".

DJS said:
In Table (Datasheet view) is it possible to change the status message?
I view many forms in datasheet view and have a double-click routing
on many cells, ideally I'd like to show which query or macro is currently
running, in the status bar.

In a macro, use the Echo action, in vba, use DoCmd.Echo
 

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