windows appearance

  • Thread starter Thread starter Szafranr
  • Start date Start date
S

Szafranr

Hello.

How I can detect (in VB code) witch windows style is used
(windows classic styles or windows xp styles)

Regards
Szafranr
 
* "Szafranr said:
How I can detect (in VB code) witch windows style is used
(windows classic styles or windows xp styles)

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

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