I made the component in Delphi 2007, and now I want it to work with new versions of Delphi, so I have to change the usage using uses Controls;
for the image uses {$if CompilerVersion > 21}Vcl.Controls{$else}Controls{$ifend}; .
But I do not know the version of the compiler that I have to write. Does anyone know this?
source share