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
How to hide "Save, Save as and Open" from ppdesigner menu
rbuser
February 2002
edited February 2002
in
General
I'm trying to hide those menu items with
AllowSaveToFile := false
But it doen't hide them.
How can I hide them?
ReportBuilder Pro 6.03
Delphi5 Pro
Comments
digitalmetaphors
February 2002
edited February 2002
You can access the menu of the designer at runtime and remove them as you
desire.
ppDesigner1.Menu.Items[0].Items[2].Visible := False;
ppDesigner1.Menu.Items[0].Items[4].Visible := False;
ppDesigner1.Menu.Items[0].Items[5].Visible := False;
ppDesigner1.Menu.Items[0].Items[6].Visible := False;
Cheers,
Jim Bennett
Digital Metaphors
Digital Metaphors Corporation
http://www.digital-metaphors.com
info@digital-metaphors.com
This discussion has been closed.
Comments
desire.
ppDesigner1.Menu.Items[0].Items[2].Visible := False;
ppDesigner1.Menu.Items[0].Items[4].Visible := False;
ppDesigner1.Menu.Items[0].Items[5].Visible := False;
ppDesigner1.Menu.Items[0].Items[6].Visible := False;
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com