Newsgroups : Borland : borland.public.delphi.nativeapi.win32 : 2005 Feb : Re: Why can't I terminate a process?
| Subject: | Re: Why can't I terminate a process? |
| Posted by: | "Dave T" (no..@none.com) |
| Date: | Mon, 21 Feb 2005 21:32:37 |
call OpenProcess with PROCESS_TERMINATE privilege to get a handle to the
process id you want to kill. You can then pass that handle to
TerminateProcess
none