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

Status
Not open for further replies.

Neophyte185

Beta member
Messages
3
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.
 
Hi

Hi Neophyte185,

I am Mehdi ,i did read your ask ,now i want help you ...
if you want RUN/CLOSE/MIN/WINDOWS FILES STATE/or other acts
you can use ActionManager object from>Additional/ActionManager1 .
just dblClick on it and right Click on Categories area and select
New Standard Action and use any thing you want ...

Or if you want select a Submenus from another programs or file's
menus ,you can execute them and send a hotkey's code to the program
(You must know hotkeys of that program)

If you still have a problem contact me at :MehdiJavid@Mailftp.com
 
Status
Not open for further replies.
Back
Top Bottom