Delphi-PRAXiS
Seite 2 von 2     12   

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi Start mehrerer Programme gleichzeitig (https://www.delphipraxis.net/39222-start-mehrerer-programme-gleichzeitig.html)

Binärbaum 6. Feb 2005 23:45

Re: Start mehrerer Programme gleichzeitig
 
Programme kannst du mit ShellExecute starten:

Delphi-Quellcode:
uses ShellAPI;
 ...

 ShellExecute( 0, 'open', PChar('C:\Ordner1\Prog1.exe'), PChar(''), nil, SW_SHOW);
 ShellExecute( 0, 'open', PChar('C:\Ordner2\Prog2.exe'), PChar(''), nil, SW_SHOW);
 ShellExecute( 0, 'open', PChar('C:\Ordner3\Prog3.exe'), PChar(''), nil, SW_SHOW);
MfG
Binärbaum


Alle Zeitangaben in WEZ +1. Es ist jetzt 13:46 Uhr.
Seite 2 von 2     12   

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz