Does anyone know of any way to convert reports made in Delphi-5.0 / QuickReport to DlphiSE5 with Fastreport? Thanks
Does anyone know of any way to convert reports made in Delphi-5.0 / QuickReport to DlphiSE5 with Fastreport? Thanks
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');