Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
General
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
Remove minimize button from preview form
rbuser
April 2008
edited April 2008
in
General
What would be the easiest way to remove the minimize button from the
report preview form (shown buy using Report.PrintReport). I am using
Report Builder Enterprise 10.05 and Delphi 2006.
Thank You,
Michael
--
Comments
rbuser
April 2008
edited April 2008
Michael Eubanks wrote:
ppreport1.PreviewForm.BorderIcons
:= ppreport1.PreviewForm.BorderIcons - [biMinimize];
this will disable the minimize button. It will still be visible, though.
HTH
Arno
--
This discussion has been closed.
Comments
ppreport1.PreviewForm.BorderIcons
:= ppreport1.PreviewForm.BorderIcons - [biMinimize];
this will disable the minimize button. It will still be visible, though.
HTH
Arno
--