You have to set the buttons and othe rcontrols to use System instead of
standard and then also add a manifest file with the same name as the exe in
the same directory as the exe... plus the Manifest extention.
So if you have an Exe name "MyApplication.exe" you also need a manifest-file
called "MyApplication.exe.manifest" in the same directory and that file
should include this:
--------------------------------------------------
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><assembly
xmlns="urn:schemas-microsoft-com:asm.v1"
manifestVersion="1.0"><assemblyIdentity version="1.0.0.0"
processorArchitecture="x86" name="namespace" type="win32"
/><description>My Great Solution</description><dependency>
<dependentAssembly> <assemblyIdentity type="win32"
name="Microsoft.Windows.Common-Controls" version="6.0.0.0"
processorArchitecture="X86" publicKeyToken="6595b64144ccf1df"
language="*" /> </dependentAssembly></dependency></assembly>