So I rebuilt my app using VS2005 and it worked beautifully except for my labels being moved down a few pixels.
I came across the property UseCompatibleTextRendering and if I change it to true then my app works fine. I can find almost no documentation on what are the impacts of changing this property. Why is the default behaviour not compatible with previous versions of winforms and what is the difference
I also read that there exists a compiler switch that allows you to change this globally, but I can find no documentation!
Darrel

What's the story on UseCompatibleTextRendering
Balakrishnan Muthubabu
http://blogs.msdn.com/michkap/archive/2005/06/27/432986.aspx
http://blogs.msdn.com/michkap/archive/2005/06/27/433208.aspx
In general using GDI/TextRenderer makes text look better and supports international scripts better.
If you do switch over to TextRenderer, make sure to use the same APIs to measure as you do to draw, as there are differences in how GDI/GDI+ size themselves/lay out characters.
Guruparan
Darrel
Schmidtty
This is a breaking change from Everett and so we will be changing the default of this proeprty to true before Whidbey ships. We will also be adding a method on Application (called SetCompatibleTextRenderingDefault) that sets the default value for this property for your application.
There is no compiler switch that affects UCTR.
Hope this helps
-mike
Gerry Rempel
1. UseCompatibleTextRendering defaults to true on all controls that use it (contrary to the August CTP documentation, by the way);
2. Application.SetCompatibleTextRenderingDefault changes the default value for all controls in the entire application.
I thought I saw a case where the Application call was ignored but I may have been mistaken... all works fine now.