News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

radasm manifests

Started by Slugsnack, July 11, 2009, 01:36:02 AM

Previous topic - Next topic

Slugsnack

i just wrote a manifest which i've stuck in the folder that my radasm project is in. this is the .xml code :

<?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"
      type="win32"
      name="PAS.exe"
      processorArchitecture="x86"
/>

<description>XP Theme</description>
<dependency>
    <dependentAssembly>
        <assemblyIdentity
            type="win32"
            name="Microsoft.Windows.Common-Controls"
            version="6.0.0.0"
            language="*"
            processorArchitecture="x86"
            publicKeyToken="6595b64144ccf1df"
        />
    </dependentAssembly>
</dependency>
</assembly>


how do i get radasm to include it when building ?

dedndave

i'd like to know how to do it with masm, aslo - lol

ramguru

in resource file you add one line:
1     24       "man.xml"

Slugsnack

ramguru : thanks, that worked perfectly. here's a nice picture to show the changes ^_^



omg look at non-square buttons + listview sexiness  :cheekygreen:

sonic

Also remember to include InitCommonControls otherwise it may not work correctly on some systems.

Happened me few times when the programs containing common controls were working without initializing, but later on reinstalling windows they refused to work.

Slugsnack