![]() |
Im gleichen Ordner Exe öffnen
Ich will, dass mein Programm Start.exe ausführt. Die Start.exe ist immer im gleichen Verzeichniss wie mein Programm. Also soll mein Programm ein "Ausführ-Tool" sein.
Wer kann mir helfen? Gruss HW764 |
Re: Im gleichen Ordner Exe öffnen
CreateProcess, ShellExecute, ShellExecuteEx und noch einige mehr.
|
Re: Im gleichen Ordner Exe öffnen
und guck auch nach "ExtractFilePath(Application.exename)"
|
Re: Im gleichen Ordner Exe öffnen
Zitat:
Gruss HW764 |
Re: Im gleichen Ordner Exe öffnen
ExtractFilePath schneidet den Dateinamen aber ab! :wink:
|
Re: Im gleichen Ordner Exe öffnen
nein, durch das extractfilepath erhälts du den pfad in dem sich die exe befindet!
|
Re: Im gleichen Ordner Exe öffnen
Ich habe keine Ahnung, wie ich das Coden soll!
Kann mir niemand helfen? Gruss HW764 |
Re: Im gleichen Ordner Exe öffnen
wurde doch eigentlich schon gepostet, nur noch nicht aufm Silbertablet presentiert
Delphi-Quellcode:
Shellexecute(..., PChar(ExtractFilePath(Application.exename) + 'Start.exe'),...);
|
Re: Im gleichen Ordner Exe öffnen
Delphi-Quellcode:
Stand aber eigentlich schon alles in den Antworten ;-)
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; [Edit]Zu langsam :cry: |
Re: Im gleichen Ordner Exe öffnen
hallo,
kann ich den Pfad von ExtractFilePath auch ausgeben zB auf nen Label? wenn ja bitte mit Quellcode thx mfg freak :coder: + :gruebel: = :wall: |
Alle Zeitangaben in WEZ +1. Es ist jetzt 05:53 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz