Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi CreateProcess bei Win98se: Datei nicht gefunden (https://www.delphipraxis.net/115961-createprocess-bei-win98se-datei-nicht-gefunden.html)

MacGuyver 20. Jun 2008 15:45


CreateProcess bei Win98se: Datei nicht gefunden
 
Moin Leute :hi:

ich habe eine Anwendung geschrieben und starte ein DOS-Pascal-Programm durch. Unter XP klappt das einwandfrei. Bei Win98 kommt dann der Fehler 2 zurück. Habt ihr das schon einmal gehabt? Ich habe auch einmal das aktuelle Verzeichnis gesetzt und auch mal ohne Verzeichnis im Programmnamen gestartet, half aber beides nichts.

Stefan

DeddyH 20. Jun 2008 15:46

Re: CreateProcess bei Win98se: Datei nicht gefunden
 
Zeig doch mal den Aufruf von CreateProcess.

MacGuyver 20. Jun 2008 16:22

Re: CreateProcess bei Win98se: Datei nicht gefunden
 
Mal eben rauskopiert:

Delphi-Quellcode:
FillChar(lStartUpInfo,SizeOf(lStartUpInfo),#0);
lStartUpInfo.cb:=SizeOf(lStartUpInfo);
FillChar(lProcessInfo,SizeOf(lProcessInfo),#0);
//Konsole soll am Anfang unsichtbar sein und erst auf unserer Form angezeigt werden.
lStartUpInfo.dwFlags   := STARTF_USESHOWWINDOW or STARTF_USEPOSITION;
lStartUpInfo.wShowWindow:= SW_NORMAL;
//Die neue Konsole gleich sichtbar oben links in den Clientbereich bringen.
lPoint.X:=0;
lPoint.Y:=0;
lPoint:=pnDosBasis.ClientToScreen(lPoint);
lStartUpInfo.dwX:=lPoint.X;
lStartUpInfo.dwY:=lPoint.Y;
lDateiname:=Dn0(dnrFosystem) + 'exe';            // ergibt in dem Fall Z:\Fosystem.exe und die Datei ist da
pnDosBasis.Visible:=True;
pnDosBasis.Caption:='"' + lDateiname + '" wird gestartet...';
sbxDos.Visible:=False;
Application.ProcessMessages;
DeleteFile(gUserPfad + 'FOS.Del');
lOk:=CreateProcess(PChar(lDateiname)
                  ,PChar(lParameter)
                  ,nil
                  ,nil
                  ,False
                  ,0
                  ,nil
                  ,nil
                  ,lStartUpInfo
                  ,lProcessInfo
                  );
Wie geschrieben: Unter XP läuft das prima und CreateProcess ist für Win98se zugelassen.

Stefan

DeddyH 20. Jun 2008 17:32

Re: CreateProcess bei Win98se: Datei nicht gefunden
 
Und Du willst ein 16Bit-Programm (DOS-Programm) damit starten? Ist zwar komischerweise irgendwie andersherum, aber in der Hilfe steht
Zitat:

lpApplicationName

Pointer to a null-terminated string that specifies the module to execute.

The string can specify the full path and filename of the module to execute.
The string can specify a partial name. In that case, the function uses the current drive and current directory to complete the specification.
The lpApplicationName parameter can be NULL. In that case, the module name must be the first white space-delimited token in the lpCommandLine string.
The specified module can be a Win32-based application. It can be some other type of module (for example, MS-DOS or OS/2) if the appropriate subsystem is available on the local computer.

Windows NT: If the executable module is a 16-bit application, lpApplicationName should be NULL, and the string pointed to by lpCommandLine should specify the executable module. A 16-bit application is one that executes as a VDM or WOW process.

MacGuyver 20. Jun 2008 20:23

Re: CreateProcess bei Win98se: Datei nicht gefunden
 
Jau! Das wars! :thumb:

Einfach Dateiname + Leerzeichen + Parameter in lpCommandLine übergeben und gut.

Danke,
danke,
danke.

Fiess finde ich das von der Hilfe:
Zitat:

lpApplicationName
[in] Pointer to a null-terminated string that specifies the module to execute. The specified module can be a Windows-based application. It can be some other type of module (for example, MS-DOS or OS/2) if the appropriate subsystem is available on the local computer.
Ich habe so schon kein Bock auf englisch.

Und dann klappt das auch noch unter XP und unter Win9X nicht. :wall:
Mal sehen, was noch für Probleme unter Win9X auftauchen, bis mein Programm ganz läuft.

Stefan

DeddyH 20. Jun 2008 20:27

Re: CreateProcess bei Win98se: Datei nicht gefunden
 
Albern finde ich das Ganze aber trotzdem. Wenn mein Englisch nicht total eingerostet ist, hätten die Probleme unter Win98 eben eher nicht auftreten sollen, sondern unter XP. Naja, wie dem auch sei, wenn es nun geht, isses ja gut.


Alle Zeitangaben in WEZ +1. Es ist jetzt 18:30 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