Give MaxIDE the XP Look

BlitzMax Forums/BlitzMax Programming/Give MaxIDE the XP Look

Leiden(Posted 2005) [#1]
You can spruce MaxIDE's look up considerably by creating a manifest file called MaxIDE.exe.manifest in the BlitzMax directory. Copy this into the newly created file:
<?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="Application"
type="win32"
/>
<description>Program 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>


Difference:


P.S. Thanks to Sarge for the Manifest file idea!