Application.SetOption Assistance (1 Viewer)

Len Boorman

Back in gainfull employme
Local time
Today, 12:36
Joined
Mar 23, 2000
Messages
1,930
I generally use a bunch of these within an event procedure on my Opening Form to ensure that certain options are set

Standard set

Application.SetOption "Confirm Record Changes", False
Application.SetOption "Confirm Document Deletions", False
Application.SetOption "Confirm Action Queries", False
Application.SetOption "Show Hidden Objects", False
Application.SetOption "Default Open Mode for Databases", 0


Fine for 97

In later versions I want to also swith off Windows in Taskbar

The Help in later versions offers no help at all

What I am looking for is I think something like

Application.SetOption "Windows in Taskbar", False

This is not recognised. Tried a few variants and also searched forum but nothing yet

Anybody with a solution please

Len B
 

allan57

Allan
Local time
Today, 12:36
Joined
Nov 29, 2004
Messages
336
Try the following:

Application.SetOption "ShowWindowsInTaskbar", False
 

Users who are viewing this thread

Top Bottom