Preview report problem
why cant' I preview the report when storeInDfm set to False.
I'm using Delphi 7 and Fast Report 2.53 with the following code:-
frReport1.ShowReport
I'm using Delphi 7 and Fast Report 2.53 with the following code:-
frReport1.ShowReport
Comments
to show it you must use the loadfromfile method before calling show report.
ie
frreport1.loadfromfile('fullpathandreportname.frf');
frreport1.showreport;