I have a standalone manifest file, but I'd like to insert it into exe so only exe is will be needed and buttons would look XP styled.
I've tried Resource Hacker, but I didn't achive anything.
I've tried Resource Hacker, but I didn't achive anything.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="MyCompany.MyLabel.MyAppName" type="win32" /> <description>MultiMedia BoardCast/Scheduler.</description> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*" /> </dependentAssembly> </dependency> </assembly>
?win32 Import "xpmanifest.o" ?Next time you compile, your EXE will have the manifest file built inside the EXE so it can be distributed as a stand-alone EXE without the external manifest file.
ResHacker.exe -addoverwrite myprog_release.exe, myprog.exe, myprog.res,,, ResHacker.exe -addoverwrite myprog.exe, myprog.exe, myprog.manifest,24,1,1033
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity version="3.9.8.0" processorArchitecture="X86" name="Appname" type="win32" /> <description>description</description> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*" /> </dependentAssembly> </dependency> </assembly>