Überprüfen Sie, ob das Programm VBNET ausführt
Dim Process() As Process
Process = Process.GetProcessesByName("processName")
If Process.Count > 0 Then
' Process is running
Else
' Process is not running
End If
End Sub
Salty Joe