Windows in Taskbar

T

Tatakau

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
 
R

Rick Brandt

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
 
Top