Get a process on the local computer, using the process id : Process « Windows System « VB.Net
- VB.Net
- Windows System
- Process
Get a process on the local computer, using the process id
Imports System
Imports System.Diagnostics
Imports System.ComponentModel
Class MyProcess
Shared Sub Main()
Dim localById As Process = Process.GetProcessById(1234)
End Sub
End Class
Related examples in the same category