Status Bar

  • Thread starter Thread starter DJS
  • Start date Start date
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 !
 
Dim SBText As Variant
SBText = SysCmd(acSysCmdSetStatus, "yourQueryName")
DoCmd.OpenQuery "yourQueryName"
SBText = SysCmd(acSysCmdClearStatus)
 
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
 
Back
Top