Exe-Dateien aufrufen

Hallo!

Womit rufe ich in Delphi bzw. dem C+±Builder normale Exe-Dateien aus Windows auf?

Grüße
Fabian

hallo Fabian,

versuche es mal wie folgt:

procedure TForm1.Button1Click(Sender: TObject);

begin
ShellExecute
(handle, // handle to parent window
NIL, // pointer to string that specifies operation to perform
PCHAR(‚C:\ name.exe), // pointer to filename or folder name string
PCHAR(‘’), // pointer to string that specifies executable-file parameters
NIL, // pointer to string that specifies default directory
SW_SHOW); // whether file is shown when opened

end;

[Bei dieser Antwort wurde das Vollzitat nachträglich automatisiert entfernt]