StatusBarText

P

Powderfinger

How can I display a message at the botton of the form. I'm trying to set the
StatusBarText but it won't let me.
Me.StatusBarText = "Hi everyone!" <<< doesn't work
 
J

John Nurick

Forms don't have status bars. To control the statusbar at the bottom of
the Access application window, use:

Application.SysCmd acSysCmdSetStatus, "Hello World!"
 
J

Jeff Boyce

Have you checked Access HELP for the syntax used in setting status bar text?

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
Top