Option for themes.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Pachydermitis

    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
  • Stuart McCall

    #2
    Re: Option for themes.

    "Pachydermi tis" <praesagus@gmai l.comwrote in message
    news:168df47e-24f9-49ff-8a2c-a29f673b43bf@b6 4g2000hsa.googl egroups.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.Set Option "Themed Form Controls", True

    to switch it OFF:

    Application.Set Option "Themed Form Controls", False

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





    Comment

    Working...