Access97 Status

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to check if the Access Status Bar is visible when I
start my application, and if it isn't, display it. Anyone
got any code for this ?

Thanks


Damien
 
I need to check if the Access Status Bar is visible when I
start my application, and if it isn't, display it. Anyone
got any code for this ?

Thanks


Damien

Damien

You can set these sorts of things using Application.SetOption, without needing
to check whether it is visible or not:

Application.SetOption "Show Status Bar", True
 
-----Original Message-----
I need to check if the Access Status Bar is visible when I
start my application, and if it isn't, display it. Anyone
got any code for this ?

Thanks


Damien

Damien

You can set these sorts of things using[/QUOTE]
Application.SetOption, without needing
to check whether it is visible or not:

Application.SetOption "Show Status Bar", True


--

Jon

www.applecore99.com - Access Tips and Tricks

.


Cheers for that Jon, good point.
 
Back
Top