Option for themes.
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.
"Pachydermitis" <praesagus [at] gmail.com> wrote in message
news:168df47e-24f9-49ff-8a2c-a29f673b43bf [at] 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