G Guest May 30, 2007 #1 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
A Albert D. Kallal May 30, 2007 #2 Hi, do you know how to turn off the windows in task bar option for Access Runtime versions. Many thanks, Jonathan Click to expand... 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....
Hi, do you know how to turn off the windows in task bar option for Access Runtime versions. Many thanks, Jonathan Click to expand... 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....
G Guest May 30, 2007 #3 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.... Click to expand...
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.... Click to expand...