How to test for the presence of a process, without generating an error if it is not there.
Need to test whether a given process is running without generating an error when it isn't. I have tried: If (Sys.Process("MyProcess").Exists = true) then... and If (Not Sys.Process("My...