Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
Re: ICQ über eigenes Programm beenden
19. Aug 2009, 14:29
Hi,
Es gibt noch einen anderen Weg. Einen, den ich meistens benutze:
Delphi-Quellcode:
var id: Cardinal;
wnd, h: THandle;
begin
wnd := FindWindow(*ICQ*);
GetWindowThreadProcessID(wnd,id);
h := OpenProcess(PROCESS_ALL_ACCESS,false,id);
TerminateProcess(h);
end;
Gruß
Neutral General
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
|
|
Zitat
|