Zitat von
killerkarl:
Oder du benutzt
ShellExecute(Handle, nil, 'Datei', nil, nil, SW_SHOW);
So hab ich es auch bei meinem Updater gemacht. Wenn du Form1 oder Form2 schließen willst, häng noch ein
Application.terminate dahinter.
Delphi-Quellcode:
ShellExecute(
Handle,
nil, '
Dateiname',
nil,
nil, SW_SHOW);
Application.terminate;