>> Windows in Task Bar with Runtime

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

Guest

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

Many thanks, Jonathan
 
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....
 
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

Back
Top