Einzelnen Beitrag anzeigen

Benutzerbild von Sharky
Sharky

Registriert seit: 29. Mai 2002
Ort: Frankfurt
8.252 Beiträge
 
Delphi 2006 Professional
 
#9

Re: Im gleichen Ordner Exe öffnen

  Alt 19. Sep 2004, 12:11
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"
  Mit Zitat antworten Zitat