I need to know if a program is running and all I have is the name of the window.
Anyone know how to do this?
I need to know if a program is running and all I have is the name of the window.
Anyone know how to do this?
answered my own question...
for anyone that runs into this later on....
Process[] procList = Process.GetProcesses();
Or even GetProcessesByName.