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

Hide Most Recent Used List In ppDesigner Window

edited February 2004 in General
How do I hide the most recent file list in the designer window?

Thanks,

Al Willis

Comments

  • 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.