Delphi-PRAXiS
Seite 1 von 2  1 2      

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   Delphi Im gleichen Ordner Exe öffnen (https://www.delphipraxis.net/30021-im-gleichen-ordner-exe-oeffnen.html)

HW764 18. Sep 2004 15:09


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

Sprint 18. Sep 2004 15:13

Re: Im gleichen Ordner Exe öffnen
 
CreateProcess, ShellExecute, ShellExecuteEx und noch einige mehr.

Pseudemys Nelsoni 18. Sep 2004 15:24

Re: Im gleichen Ordner Exe öffnen
 
und guck auch nach "ExtractFilePath(Application.exename)"

HW764 18. Sep 2004 16:53

Re: Im gleichen Ordner Exe öffnen
 
Zitat:

und guck auch nach "ExtractFilePath(Application.exename)"
Aber dann kommt der Exename vom Programm, das ich benutze um ein anderes zu starten!

Gruss HW764

S2B 18. Sep 2004 16:55

Re: Im gleichen Ordner Exe öffnen
 
ExtractFilePath schneidet den Dateinamen aber ab! :wink:

Meflin 18. Sep 2004 16:56

Re: Im gleichen Ordner Exe öffnen
 
nein, durch das extractfilepath erhälts du den pfad in dem sich die exe befindet!

HW764 19. Sep 2004 11:05

Re: Im gleichen Ordner Exe öffnen
 
Ich habe keine Ahnung, wie ich das Coden soll!
Kann mir niemand helfen?

Gruss HW764

SirThornberry 19. Sep 2004 11:09

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'),...);

Sharky 19. Sep 2004 11:11

Re: Im gleichen Ordner Exe öffnen
 
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 :cry:

freak4fun 13. Okt 2004 09:07

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.
Seite 1 von 2  1 2      

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