Results 1 to 8 of 8

Thread: [Delphi]How do I access menu commands in one program from a Delphi Form?

Threaded View

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2005
    Posts
    4

    [Delphi]How do I access menu commands in one program from a Delphi Form?

    I am a neophyte programmer. I have figured out how to generate a simple Delphi 7 form with a button in it which will run an executable.

    procedure TForm1.Button1Click(Sender: TObject);
    begin
    ShellExecute(Form1.Handle, 'open', 'c:\E3238s\bin\E3238s.exe',
    nil, nil, SW_SHOWNORMAL);
    end;
    end.

    My problem is I need to know how to access the menus that are a part of this executable. For example how would I access the FILE menu in order to select EXIT.
    Last edited by NoteMe; Jul 29th, 2005 at 09:56 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width