Mega Code Archive
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