>> Windows in Task Bar with Runtime

J

Jonathan

Hi, do you know how to turn off the windows in task bar option for Access
Runtime versions.

Many thanks, Jonathan
 
A

Albert D. Kallal

Hi, do you know how to turn off the windows in task bar option for Access
Runtime versions.

Many thanks, Jonathan

Here is what I use for runtime start-up (a2003)


Application.SetOption "ShowWindowsInTaskbar", False
Application.SetOption "Themed Form Controls", True
Application.SetOption "Show Startup Dialog Box", False
Application.CommandBars.AdaptiveMenus = False

The first option is the one you want....
 
J

Jonathan

Many thanks Albert.

Jonathan

Albert D. Kallal said:
Here is what I use for runtime start-up (a2003)


Application.SetOption "ShowWindowsInTaskbar", False
Application.SetOption "Themed Form Controls", True
Application.SetOption "Show Startup Dialog Box", False
Application.CommandBars.AdaptiveMenus = False

The first option is the one you want....
 

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