getting list of processes
-
Hi all how can i get the list of processes which are currently running in windows. Regards
sAqIb "Our scientific power has outrun our spiritual power. We have guided missiles and misguided men." Dr. Martin Luther King Jr.
Hi You can use CreateToolhelp32Snapshot(..). Then walk through the list with Process32First(..) and Process32Next(..). After using the snapshot, use CloseHandle(..) for WinXP and CloseToolhelp32Snapshot(..) for WinCE. regards simon
-
Hi all how can i get the list of processes which are currently running in windows. Regards
sAqIb "Our scientific power has outrun our spiritual power. We have guided missiles and misguided men." Dr. Martin Luther King Jr.
EnumProcesses()
.
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
-
Hi all how can i get the list of processes which are currently running in windows. Regards
sAqIb "Our scientific power has outrun our spiritual power. We have guided missiles and misguided men." Dr. Martin Luther King Jr.
http://www.codeproject.com/threads/w32process.asp
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and you
-
Hi all how can i get the list of processes which are currently running in windows. Regards
sAqIb "Our scientific power has outrun our spiritual power. We have guided missiles and misguided men." Dr. Martin Luther King Jr.
See
EnumProcesses
you can see two examples of it on the MSDN;)
WhiteSky