1 (edited by v_pozidis 2014-09-19 09:40:27)

Topic: execute windows program

is there a way to execute program like Notepad or Paint by pressing a button?

Re: execute windows program

Yes,


procedure Form1_Button1_OnClick (Sender: string; var Cancel: boolean);
begin
   OpenFile('notepad.exe');
end;
Dmitry.