How to convert Delphi reports?

Asked

Viewed 203 times

2

Does anyone know any way to convert reports made in Delphi-5.0/Quickreport to Dlphise5 with Fastreport? Thank you

  • If you have two accounts you can convert them into one using this page: http://answall.com/contact

1 answer

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');

Here you can get the unit complete

  • 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

You are not signed in. Login or sign up in order to post.