Windows in Taskbar

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

Guest

I turned off the option in my version of Access to show individual windows in
the taskbar (Tools > Options > View Tab > Windows In Taskbar (untick)).
However, this is an individual user setting, and any other computer who uses
the database will not have this setting. Is there any code I can run, VBA or
Macro, that will turn this off?

Pseudocode: DoCmd.SetProperty("WindowsInTaskbar") = False

Thanks!

Nick
 
Tatakau said:
I turned off the option in my version of Access to show individual
windows in the taskbar (Tools > Options > View Tab > Windows In
Taskbar (untick)). However, this is an individual user setting, and
any other computer who uses the database will not have this setting.
Is there any code I can run, VBA or Macro, that will turn this off?

Pseudocode: DoCmd.SetProperty("WindowsInTaskbar") = False

Thanks!

Nick

Application.SetOption "ShowWindowsInTaskbar", 0
 

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