Reputation: 847
Using Delphi 7, how can I check if Windows has a theme enabled (i.e. is it the classic gray windows look or not)?
Upvotes: 2
Views: 1366
Reputation: 21713
You can use the unit UxTheme.pas
and call the IsThemeActive
function.
Delphi 7 was the first version that shipped with it but it should be possible to use that unit in older versions aswell as it is open source (written by Mike Lischke originally) that just uses WinAPI.
Upvotes: 6