2
Does anyone know any way to convert reports made in Delphi-5.0/Quickreport to Dlphise5 with Fastreport? Thank you
2
Does anyone know any way to convert reports made in Delphi-5.0/Quickreport to Dlphise5 with Fastreport? Thank you
0
Just add in your project’s uses to unit
ConverterQR2FR
and use this:
conv := TConverterQr2Fr.Create;
conv.Source := QuickRep1;
conv.Target := FReport;
conv.Convert;
FReport.SaveToFile('converted_fromQR.fr3');
Thank you very much Junior I’ll try.
@Sergiodetoledopiza if you have two accounts you can convert into one using this page: http://answall.com/contact
Browser other questions tagged delphi-xe5
You are not signed in. Login or sign up in order to post.
If you have two accounts you can convert them into one using this page: http://answall.com/contact
– Sergio