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"?
|
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 XE2 - 23 Delphi XE - 22 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 |
||||
|
|
|
Along the same lines as Jason's comment if you are creating code that needs to run in current and older versions of Delphi you might want to do something like:
|
|||||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.