determine if a process is running

  • Thread starter Thread starter Guest
  • Start date Start date
Xero said:
could you be more specific?

?!?

\\\
Imports System.Diagnostics
....
If Not Process.GetProcessByName("bla") Is Nothing Then
MsgBox("Process is running")
Else
...
End If
///
 
Back
Top