Home General

ppDesigner Hide Menu Options

edited July 2011 in General
How can I disable some menu options like "New", "Open", "SaveTo" before the
designer shows

I do this on the event ppDesigner1Activate, I can hide the options but
the shortcuts still active

with ppDesigner1.Menu.Items[0] do
begin
Items[0].Visible := False;
Items[1].Visible := False;

Items[2].Visible := False; //Open option
Items[2].Enabled := False; //this not work , or designer re-enable it at
some point

end;


Thanks
cheers

Comments

This discussion has been closed.