Interrogating Report.Version gives strange result
Polomint
Australia
I recently updated my FR VCL 4 on RAD Studio XE2, to the current version of FastReport.
In the IDE Object Inspector looking at TfrxReport instances I can see the value of the Version property as 4.15.10.
In my code I want to interrogate these instances to determine the FR version. For example if I have:
Well the code executes, but the value in FRversion is *NOT* 4.15.10, but is 4.12.2.
Huh? Anyone know what is happening here?
Cheers, Paul
In the IDE Object Inspector looking at TfrxReport instances I can see the value of the Version property as 4.15.10.
In my code I want to interrogate these instances to determine the FR version. For example if I have:
I should then be able to get the version for my purposes by:Report : TfrxReport;
FRversion : string;
FRversion := Report.Version;
Well the code executes, but the value in FRversion is *NOT* 4.15.10, but is 4.12.2.
Huh? Anyone know what is happening here?
Cheers, Paul
Comments