|
Description
This can be used for many programming languages such as VB6, Delphi, PowerBASIC, etc that have the old Win98 theme on their applications.
Simply place this into notepad.
Change where it says my name, (Ant), and put yours.
Then save it as yourexename.exe.manifest into the same folder as your application.
Example:
My executable name is PassGen.exe
I save the file as...
PassGen.exe.manifest
Simple!
<?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="Ant" type="win32"/> <description>Your Application Description Here!</description> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0"
processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*"/> </dependentAssembly> </dependency> </assembly> |
|