Text in a Status Bar

G

Guest

Hi all,

I would like to display some text in the status bar of forms. Is there a
quick and easy way? (I can't believe I just said that!)

Any help appreciated
Connie
 
K

Ken Snell \(MVP\)

Under what circumstances and what text? You can use the Status Bar Text
property for a control on the form to display text whenever the control has
the focus. You can use VBA programming to cause text to show in the Status
Bar using the SysCmd function:

Dim varReturn As Variant
' write text string to Status Bar
varReturn = SysCmd(acSysCmdSetStatus, "Text to be displayed")
' do other code steps here
'
' clear the text from the Status Bar
varReturn = SysCmd(acSysCmdClearStatus)
 

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

Similar Threads

Status bar text cut off 1
Status Bar text 3
Status bar text message!! 7
status bar 2
Running Query Status bar in form 3
Status bar text 2
Control Tip or Status Bar Text 2
Status Bar 1

Top