? =?iso-8859-1?q?Horacio_Nu=F1ez_Hern=E1ndez?= Feb 1, 2007 #2 How do I detect MS Word is already running? Click to expand... hi check the process running on OS, and look is anyone is the winword.exe
How do I detect MS Word is already running? Click to expand... hi check the process running on OS, and look is anyone is the winword.exe
J JonBosker Feb 1, 2007 #3 hi check the process running on OS, and look is anyone is the winword.exe Click to expand... Here is a code snippet that may help: //using System.Diagnostics; Process p = Process.GetProcessById(nProcessID); string sProcess = p.ProcessName;
hi check the process running on OS, and look is anyone is the winword.exe Click to expand... Here is a code snippet that may help: //using System.Diagnostics; Process p = Process.GetProcessById(nProcessID); string sProcess = p.ProcessName;