Detecting 'Themes'

  • Thread starter Thread starter Jose A. Gonzalvo
  • Start date Start date
J

Jose A. Gonzalvo

How can I know if the application is running under the Windows XP themes or
not (Windows Classic)?

Thanks in advance,
Jose
 
* "Jose A. Gonzalvo said:
How can I know if the application is running under the Windows XP themes or
not (Windows Classic)?

Maybe this works (notice that this function is only available in Windows
XP and newer:

\\\
Private Declare Function IsThemeActive Lib "uxtheme.dll" () As Boolean
///
 
Thank you very much. It works!

Herfried K. Wagner said:
Maybe this works (notice that this function is only available in Windows
XP and newer:

\\\
Private Declare Function IsThemeActive Lib "uxtheme.dll" () As Boolean
///
 
Back
Top