Programmatically turn of Startup Windows in Status Bar

A

AbeR

I'd like to turn off the Windows in Status Bar in my application programmatically. After looking around for a while I have not found the proper class.property. I think it might be related to application.setoptions, but have not found it.

If anyone know how to do this I would be very appreciative.

Thanks in advance.
- Abe
 
A

Allen Browne

Try:

If Application.GetOption("ShowWindowsInTaskbar") Then
Application.SetOption ("ShowWindowsInTaskbar"), False
End If

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.

AbeR said:
I'd like to turn off the Windows in Status Bar in my application
programmatically. After looking around for a while I have not found the
proper class.property. I think it might be related to
application.setoptions, but have not found it.
 
A

AbeR

Perfect!
--
Thanks,

Abe


Allen Browne said:
Try:

If Application.GetOption("ShowWindowsInTaskbar") Then
Application.SetOption ("ShowWindowsInTaskbar"), False
End If

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.


programmatically. After looking around for a while I have not found the
proper class.property. I think it might be related to
application.setoptions, but have not found it.
 

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