Question regarding Status Bar Text

B

Bob Valentine

Group:

I have used the following statement to delete the words "Form View" from
appearing in the Status Bar at the bottom of the window when my Splash
Screen form opens.

varReturn = SysCmd(acSysCmdSetStatus, " ")

When the Splash Screen form is closed and a new form is opened, I want to
reset the status bar text so that when objects are selected on the new form,
the Status Bax Text property of that object shows in the status bar.
However, what is happening now is that the status bar is blank because of
the above statement that was executed when the Splash Screen was opened.

What is the VBA statement to reset the Status Bar?

Thanks,
Bob V
 
S

Stuart McCall

Bob Valentine said:
Group:

I have used the following statement to delete the words "Form View" from
appearing in the Status Bar at the bottom of the window when my Splash
Screen form opens.

varReturn = SysCmd(acSysCmdSetStatus, " ")

When the Splash Screen form is closed and a new form is opened, I want to
reset the status bar text so that when objects are selected on the new
form, the Status Bax Text property of that object shows in the status bar.
However, what is happening now is that the status bar is blank because of
the above statement that was executed when the Splash Screen was opened.

What is the VBA statement to reset the Status Bar?

Thanks,
Bob V

SysCmd acSysCmdClearStatus
 
B

Bob Valentine

Thank you Dennis & Stuart for your help. This is what I was looking for.

BobV
 

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