View Single Post
Old 05-15-2006, 11:35 PM   #5 (permalink)
KnifeMissile
 
KnifeMissile's Avatar
 
Location: Waterloo, Ontario
Yeah, thanks. Luckily, I figured this out and, yes, you do need a manifest file. It needs an entry that looks like this:
Code:
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="x86" publicKeyToken="6595b64144ccf1df" language="*" />
What's more, according to the Microsoft documentation, this actually needs to be all in one line. This makes no sense since any XML parser should parse it regardless of how you organize the syntax elements so one can only conclude that they're not actually using a real XML parser...
KnifeMissile is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47