Programmatically turn of Startup Windows in Status Bar

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

Guest

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
 
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.
 
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.
 
Back
Top