Hallo zusammen,
folgenden Infos habe ich zu diesem Thema gefunden. Allerdings fällt mir die Umsetzung mit Delphi schwehr:
Zitat:
To create a manifest and enable your application to use visual styles.
1. Include the common controls header file as follows:
#include "commctrl.h"
2.
Compile your application with the -DISOLATION_AWARE_ENABLED flag or insert the following statement before the #include "windows.h" statement.
#define ISOLATION_AWARE_ENABLED 1
3. Add a file called YourApp.manifest to your source tree that uses the
XML manifest format.
4. Add the following statement to your application.
#define MANIFEST_RESOURCE_ID 2
5. Add the manifest to your application's resource file as follows:
MANIFEST_RESOURCE_ID RT_MANIFEST "YourApp.manifest"
Das die ID nicht 1 sondern 2 sein muss, habe ich verstanden. Nur wie bekomme ich das mit 2. hin?