J Jose A. Gonzalvo Apr 12, 2004 #1 How can I know if the application is running under the Windows XP themes or not (Windows Classic)? Thanks in advance, Jose
How can I know if the application is running under the Windows XP themes or not (Windows Classic)? Thanks in advance, Jose
H Herfried K. Wagner [MVP] Apr 12, 2004 #2 * "Jose A. Gonzalvo said: How can I know if the application is running under the Windows XP themes or not (Windows Classic)? Click to expand... Maybe this works (notice that this function is only available in Windows XP and newer: \\\ Private Declare Function IsThemeActive Lib "uxtheme.dll" () As Boolean ///
* "Jose A. Gonzalvo said: How can I know if the application is running under the Windows XP themes or not (Windows Classic)? Click to expand... Maybe this works (notice that this function is only available in Windows XP and newer: \\\ Private Declare Function IsThemeActive Lib "uxtheme.dll" () As Boolean ///
J Jose A. Gonzalvo Apr 12, 2004 #3 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 /// Click to expand...
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 /// Click to expand...