Windows in Taskbar

J

José

Ms Access 2002
How can I to hide Windows in task bar programmatically (using VBA)?

Thanks,
José
 
A

Albert D. Kallal

My typical startup code for access 2003 is:

on error resume next

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

DoCmd.RunCommand acCmdAppMaximize
 

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