After doing some searching on the site, I was able to get the following code to return the running processes on the computer.
Private Sub ProcessMonitor_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim Prc As Process()
Dim x As Integer
Prc = Process.GetProcesses
For x = 0 To UBound(Prc)
TreeView1.Nodes.Add(Prc(x).ProcessName)
Next
End Sub
I was wondering how I could make this resemble the Task Manger a little more with the sortable columns and the extra info that is shown in the Task Manager.