Live-Forum - Die aktuellen Beiträge
Datum
Titel
24.04.2024 19:29:30
24.04.2024 18:49:56
24.04.2024 17:19:09
Anzeige
Archiv - Navigation
264to268
Aktuelles Verzeichnis
Verzeichnis Index
Übersicht Verzeichnisse
Vorheriger Thread
Rückwärts Blättern
Nächster Thread
Vorwärts blättern
Anzeige
HERBERS
Excel-Forum (Archiv)
20+ Jahre Excel-Kompetenz: Von Anwendern, für Anwender
264to268
264to268
Aktuelles Verzeichnis
Verzeichnis Index
Verzeichnis Index
Übersicht Verzeichnisse
Inhaltsverzeichnis

Ist ein Programm aktiv?

Ist ein Programm aktiv?
11.06.2003 12:32:38
EgonF
Hallo,

Mein Winzip Problem von eben ist wohl gelöst. Ich muss es noch ausprobieren.

Es wäre aber doch prinzipell für mich interresant, ob man (mit API?) feststellen kann, ob ein bestimmtes anderes Programm neben Excel aktiv ist.

Danke für Eure Mühe

Egon

3
Beiträge zum Forumthread
Beiträge zu diesem Forumthread

Betreff
Datum
Anwender
Anzeige
Re: Ist ein Programm aktiv?
11.06.2003 12:48:19
Michael Scheffler

Hi,

schau Dir mal den API-Guide an. Da wirst Du sicher geholfen.

Gruß

Micha

Re: Ist ein Programm aktiv?
11.06.2003 13:39:42
egonF

Hallo Michael,

habe den API-Guide mit Google gefunden. Das wird mich wahrscheinlich einige Zeit auf Trab halten.

Vielen Dank für Deine Hilfe


Viele Grüße

Egon

Re: Ist ein Programm aktiv?
11.06.2003 14:29:14
RAnton

Hallo Egon,

ich nehme an, diese API-Funktion müsste es tun.

GetExitCodeProcess

The GetExitCodeProcess function retrieves the termination status of the specified process.


BOOL GetExitCodeProcess(
HANDLE hProcess,
LPDWORD lpExitCode
);

Parameters
hProcess
[in] Handle to the process.
Windows NT/2000/XP: The handle must have the PROCESS_QUERY_INFORMATION access right. For more information, see Process Security and Access Rights.

lpExitCode
[out] Pointer to a variable to receive the process termination status.
Return Values
If the function succeeds, the return value is nonzero.

If the function fails, the return value is zero. To get extended error information, call GetLastError.

Remarks
If the specified process has not terminated, the termination status returned is STILL_ACTIVE. If the process has terminated, the termination status returned may be one of the following:

The exit value specified in the ExitProcess or TerminateProcess function.
The return value from the main or WinMain function of the process.
The exception value for an unhandled exception that caused the process to terminate.

Note Warning If a process happens to return STILL_ACTIVE (259) as an error code, applications that test for this value could end up in an infinite loop.


Auszug aus dem WinSDK.

Gruß
RAnton

Anzeige

Beliebteste Forumthreads (12 Monate)

Anzeige

Beliebteste Forumthreads (12 Monate)

Anzeige
Anzeige
Anzeige