I have bat-file, that make some operations. How to run this file from Delphi and wait, until it stops. Something like that:
procedure TForm1.Button1Click(Sender: TObject);
begin
//Starting bat-file
bla-bla-bla
showmessage('Done');
end;
|
feedback
|
|
This executes the given command line and waits for the program started by the command line to exit. Returns true if the program returns a zero exit code and false if the program doesn't start or returns a non-zero error code.
From: http://www.delphidabbler.com/codesnip?action=named&showsrc=1&routines=ExecAndWait | |||||
feedback
|
|
Here is some code and example - under Windows 7 works fine and is invisible (funcion ExeAndWait is borrowed).
PS. If you like you can build batch file at runtime using TStringList class. | ||||
|
feedback
|