show outline by script
Hi,
is it possible to show outline by script in a report?
i have tried this:
is it possible to show outline by script in a report?
i have tried this:
procedure OnStartReport(Sender: TfrxComponent);
begin
  report.PreviewOptions.OutlineExpand := True;   Â
  report.PreviewOptions.OutlineVisible := True;
end;
procedure Page1OnBeforePrint(Sender: TfrxComponent);
begin
  report.PreviewOptions.OutlineExpand := True;   Â
  report.PreviewOptions.OutlineVisible := True; Â
end;
but it didn't work
Comments