I've got the following:
Dim plist() As Process = Process.GetProcesses()
For Each prs As Process In plist
ListBox1.Items.Add(prs.ProcessName + " (" + (prs.PrivateMemorySize64 / 1024000).ToString() + " MB)")
But id really like to get it to list it by memory size if possible? If anyone has any ideas it would be much appreciated
Here is a basic sample, you will have to customise it to your needs.