Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

How to hide "Save, Save as and Open" from ppdesigner menu

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

  • 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

This discussion has been closed.