H Herfried K. Wagner [MVP] Dec 30, 2005 #2 Xero said: how do i determine if a process is running? Click to expand... 'System.Diagnostics.Process.GetProcessByName'.
Xero said: how do i determine if a process is running? Click to expand... 'System.Diagnostics.Process.GetProcessByName'.
G Guest Dec 31, 2005 #3 could you be more specific? thanks. -- Xero http://www.chezjeff.net My personal web portal
H Herfried K. Wagner [MVP] Dec 31, 2005 #4 Xero said: could you be more specific? Click to expand... ?!? \\\ Imports System.Diagnostics .... If Not Process.GetProcessByName("bla") Is Nothing Then MsgBox("Process is running") Else ... End If ///
Xero said: could you be more specific? Click to expand... ?!? \\\ Imports System.Diagnostics .... If Not Process.GetProcessByName("bla") Is Nothing Then MsgBox("Process is running") Else ... End If ///