disable the minimize button of preview window

edited 10:37PM in FastReport 4.0
Is there a way to disable/make invisible the minimize-button of the preview window?

we use fastreport vcl 4.10 (delphi)

Comments

  • edited 10:37PM
    Sveld wrote: »
    Is there a way to disable/make invisible the minimize-button of the preview window?

    we use fastreport vcl 4.10 (delphi)


    In version fast report 5, i resolved with event OnPreview, exemple:

    procedure TForm1.frxReport1Preview(Sender: TObject);
    begin
    if Assigned(frxReport1.PreviewForm) then
    frxReport1.PreviewForm.BorderIcons := [TBorderIcon.biSystemMenu]
    end;

Leave a Comment