how to findout that a certain program is running or not
-
I want to write a program and I need to see that is a certain program running or not , how can I do that ? thanks
-
If the program is service, you can find with IsServiceRunning API. If it is Window/Dialog Exe, you can do it with FindWindowEx API. Read how to use FindWindowEx API.
-
Be careful when using
FindWindowEx()
. It has the potential to cause a deadlock situation.
"A good athlete is the result of a good and worthy opponent." - David Crow
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne
-
Be careful when using
FindWindowEx()
. It has the potential to cause a deadlock situation.
"A good athlete is the result of a good and worthy opponent." - David Crow
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne
I think its good advise about FindWindow.;)
WhiteSky