Option for themes.

Option for themes.

am 17.04.2008 21:44:27 von Pachydermitis

Hi all,
does anyone know the SetOption name for the option "Used Windows
Themed Controls on Form" in Access 2003? This thing is a thorn in my
side and it would be nice to set it programtically.
Thanks

Re: Option for themes.

am 17.04.2008 22:46:29 von Stuart McCall

"Pachydermitis" wrote in message
news:168df47e-24f9-49ff-8a2c-a29f673b43bf@b64g2000hsa.google groups.com...
> Hi all,
> does anyone know the SetOption name for the option "Used Windows
> Themed Controls on Form" in Access 2003? This thing is a thorn in my
> side and it would be nice to set it programtically.
> Thanks

To set the option ON:

Application.SetOption "Themed Form Controls", True

to switch it OFF:

Application.SetOption "Themed Form Controls", False

FYI the best (IMO) source for this info is:

http://msdn2.microsoft.com/en-us/library/aa172326(office.11) .aspx