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
Hide Most Recent Used List In ppDesigner Window
rbuser
February 2004
edited February 2004
in
General
How do I hide the most recent file list in the designer window?
Thanks,
Al Willis
Comments
nicocizik
February 2004
edited February 2004
Hi Al,
You can use the Designer.Menu property to access the main menu of the
designer and alter it how you need. You will want to add something like the
following to your code.
ppDesigner1.Menu.Items[0].Items[22].Visible := False;
ppDesigner1.Menu.Items[0].Items[23].Visible := False;
ppDesigner1.Menu.Items[0].Items[24].Visible := False;
ppDesigner1.Menu.Items[0].Items[25].Visible := False;
ppDesigner1.Menu.Items[0].Items[26].Visible := False;
ppDesigner1.ShowModal;
--
Best Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
This discussion has been closed.
Comments
You can use the Designer.Menu property to access the main menu of the
designer and alter it how you need. You will want to add something like the
following to your code.
ppDesigner1.Menu.Items[0].Items[22].Visible := False;
ppDesigner1.Menu.Items[0].Items[23].Visible := False;
ppDesigner1.Menu.Items[0].Items[24].Visible := False;
ppDesigner1.Menu.Items[0].Items[25].Visible := False;
ppDesigner1.Menu.Items[0].Items[26].Visible := False;
ppDesigner1.ShowModal;
--
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com