Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   How do I get XP style controls in MSDev? (https://thetfp.com/tfp/tilted-technology/104450-how-do-i-get-xp-style-controls-msdev.html)

KnifeMissile 05-10-2006 07:00 PM

How do I get XP style controls in MSDev?
 
I'm writing applications using MSDev 2005 and I can't help but notice that all my applications have the Win2000 style controls instead of the funny XP ones.

Why is this? How can I get it to use the new style controls?
Thank you...

Moskie 05-11-2006 03:20 AM

Might be a stupid question, but:

are you running Windows XP? Or Windows 2000?

KnifeMissile 05-11-2006 01:50 PM

I'm running Windows XP in XP UI mode...

n0nsensical 05-13-2006 01:04 PM

I think you have to use something called a "manifest file".. sorry, I don't know much more than that as I've never used one, but I think its just a text file with some kind of description that needs to be in your project for it to use the new controls..

KnifeMissile 05-15-2006 11:35 PM

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...


All times are GMT -8. The time now is 02:11 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73