In Delphi 2010, if I want to do this:
{$IFDEF VER999}
//some delphi 2010-specific code here
{$ENDIF}
What version # do I need to use in place of "999"?
|
1
|
In Delphi 2010, if I want to do this:
What version # do I need to use in place of "999"?
|
||||
|
|
|
{$IFDEF VER210} |
||||
|
|
|
Just for completeness, I have found a full list as of D2007, and added the more recent ones. In Delphi 2007, VER180 and VER185 are both defined. This was for backward compatibility with Delphi 2006, and to make sure you could also detect D2007 specifically. I'm not sure why they did that between '06 and '07, but not for other releases. Seems inconsistent to me (but it isn't - see Barry Kelly's comment below). But at any rate, the full list is like this:
|
||||
|
|
|
If you're working with Delphi 6 and later, you can use
Delphi 2010 - 21 Delphi 2009 - 20 Delphi 2007 - 18.5 Delphi 2006 - 18 Delphi 2005 - 17 Delphi 8 - 16 Delphi 7 - 15 Delphi 6 - 14 |
||
|
|
|
|
Here is a wiki page with conditional defines. |
||
|
|
|
|
It was done like this for Delphi 2007 because its VCL is compatible with Delphi 2006's VCL - no other version of Delphi has ever been backwards compatible like this before. |
||
|
|
|
|
THANKS A LOT PARTNER |
||
|
|
|
|
Wrong Comment added by accident :-) |
||
|
|