How to convert Delphi reports?

2

Does anyone know of any way to convert reports made in Delphi-5.0 / QuickReport to DlphiSE5 with Fastreport? Thanks

    
asked by anonymous 18.08.2015 / 18:51

1 answer

0

Simply add% of unit to your project uses and use this:

conv := TConverterQr2Fr.Create;
conv.Source := QuickRep1;
conv.Target := FReport;
conv.Convert;
FReport.SaveToFile('converted_fromQR.fr3');

Here you can get the complete ConverterQR2FR

    
30.10.2015 / 16:30