Question

In an inherited Access app I have to maintain, there is a login screen (status bar at the bottom of Access window is still visible) then clicking "OK", the status bar disappears. What code should I search for finding (and removing) that behavior ?
I search the code for SysCmd acSys... but the instructions I found (ClearStatus, SetStatus, InitMeter)do not seems to do that.
I also searched for Application.SetOption "Show Status Bar" without success.
Any clue ?

Was it helpful?

Solution

It should be

Application.SetOption "Show Status Bar", False

This is the code that hides or shows the status bar, depending on whether you enter true or false for the final argument. If you haven't found it yet, go into code view and search for "Status Bar" by using the ctrl+f search function. If you don't find it in the login form, it is probably in the form that is opening after login. I personally use this code in the On Open/On Activate functions in my "Home" form that opens after the user logs in.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top