frxPreview toolbar
Hello,
Is there a way to show standard toolbar controls /print,export,etc./ in frxPreview?
By default they are missing.
Thank you.
example:
Is there a way to show standard toolbar controls /print,export,etc./ in frxPreview?
By default they are missing.
Thank you.
example:
var
  pp: TfrxPreview;
begin
    pp := TfrxPreview.Create(Self);
    pp.Parent := Self;
    pp.ManualDock( Form2.PageControl1 );
    form2.frxReport1.Preview := pp;
    form2.frxReport1.Clear;
    form2.frxReport1.LoadFromFile( Extractfilepath( Application.ExeName ) + 'test.fr3' );
    form2.frxReport1.ShowReport;
end;
Comments