disable the minimize button of preview window
Is there a way to disable/make invisible the minimize-button of the preview window?
we use fastreport vcl 4.10 (delphi)
we use fastreport vcl 4.10 (delphi)
Comments
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;