Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

statusbar problem 1

Status
Not open for further replies.

CPUburn

Programmer
Jan 18, 2001
146
BE
hi,

we have a problem with an access app at a client. On 2 machines he doesn't seem to have the "status bar", on several others there's no problem. Since the status bar reveals vital information in our app this poses significant problems.

Anyone with an idea for a workaround? We just use:

SysCmd acSysCmdSetStatus, "blablabla"

thx

the kid
 
Hi.

In access 97, you go to the database window, and Select Tools -> Startup... -> and check the box that says Display StatusBar...

OR

Private Sub cmdToggleStatus_Click()
If Application.GetOption("Show Status Bar") Then
Application.SetOption "Show Status Bar", False
Else
Application.SetOption "Show Status Bar", True
End If
End Sub


;-)

Gzep.
Vote if u like it...Ta.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top