Delphi-Quellcode:
uses
ShellApi;
procedure TForm1.Button1Click(Sender: TObject);
var
myExePath : String;
myApplication : String;
begin
myExePath := ExtractFilePath(Application.ExeName); // Der Pfad zur eigenen Exe
myApplication := myExePath + 'start.exe'; // Startpfad für 2. Exe
ShellExecute(0, 'open',PChar(myApplication), NIL, NIL, SW_SHOW) // und los
end;
Stand aber eigentlich schon alles in den Antworten
[Edit]Zu langsam
Stephan B.
"Lasst den Gänsen ihre Füßchen"