Hide Items in File Menu of Designer

Hi again,

another question. Can i hide or disable the "New Dialog" and "Save as" menu entries in the file menu of the designer during runtime ?

With the Restrictions Property of the Designer i only can hide both "Save" and "Save as".


regards

J?¶rg

Comments

  • gpigpi
    edited 7:01PM
    Use something like this:
    procedure TForm1.frxDesigner1Show(Sender: TObject);
    begin
      if Sender is TfrxDesignerForm then
        begin
          TfrxDesignerForm(Sender).OpenB.Visible:=False;
        end;
    end;
    

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.