Topic: EXE FILE

Hello MVD

How to embed an executable file within a form and run it?
Please!

Thanks

Re: EXE FILE

manixs2013, you mean it?

procedure Form1_Button1_OnClick (Sender: TObject; var Cancel: boolean);
begin
OpenFile('calc.exe');
end;

Function OpenFile() calls anything executable file on Form.

Yana

Re: EXE FILE

Thanks!  Adi