Thanks. Using information on link, in a first momment I made some
tries.
1. change harbour_win.mft (3.2) by harbour.mft (3.4) and rebuild
Harbour - I don't know if this was needed
2. Create a manifest file - jpa.exe.manifest
------------------------------------------
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1"
manifestVersion="1.0">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker"
uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32"
name="Microsoft.Windows.Common-Controls" version="6.0.0.0"
processorArchitecture="*" publicKeyToken="6595b64144ccf1df"
language="*" />
</dependentAssembly>
</dependency>
</assembly>
---------------------------------------
3. After a google search, change my jpa.rc using information in this
link:
http://blogs.msdn.com/b/cheller/archive/2006/08/24/how-to-embed-a-manifest-in-an-assembly-let-me-count-the-ways.aspx
#define RT_MANIFEST 24
#define APP_MANIFEST 1
APP_MANIFEST RT_MANIFEST "resource\\jpa.exe.manifest"
Result is little modifications in buttons visual - thin border, blue
background when mouse is over, tooltip in msvc2010.
Test using mingw and msvc2010. Both ok.
José M. C. Quintas