Fixed Check if a process is running Fixed
Hi.
How can i check if a process is running or not.
I want a code like this.
Found it:
How can i check if a process is running or not.
I want a code like this.
Code:
if (explorer) is running then label1.text = "Running" else label1.text = "Not Running" end if
Code:
If Process.GetProcessesByName("explorer").Length > 0 Then
Else
MsgBox("HA")
End If
