Windows in Taskbar

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

Guest

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

Thanks,
José
 
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
 
Back
Top