File Name in FastReport designer
If I load a report from a stream from a database, is there a way to change the report name at the top of the designer without saving it to disk first? I've tried using this "frxPROLetter.Report.ReportOptions.Name" but it does not change at the top of the designer form.
Thanks
Wayne
Thanks
Wayne
Comments
uses frxDesgn;
var
Designer: TfrxDesignerForm;
begin
Designer := TfrxDesignerForm(frxReport.Designer);
Designer.Caption := 'My Caption';
I'm trying to get started with my first Fast Report Projects. I'm having trouble finding documentation that answers "what" and "why" type questions. For example I have been looking at the DoublePass property in the help files trying to figure out if I should set it for my reports.
displayed in a footer displayed in a header.
see the main demo dialogs and script totals in group header report.
or where you gather data on the first pass to be used in the second pass.