StatusBarText

  • Thread starter Thread starter Powderfinger
  • Start date Start date
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
 
Forms don't have status bars. To control the statusbar at the bottom of
the Access application window, use:

Application.SysCmd acSysCmdSetStatus, "Hello World!"
 
Have you checked Access HELP for the syntax used in setting status bar text?

Regards

Jeff Boyce
Microsoft Office/Access MVP
 

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

Back
Top