Imports System.Diagnostics
Imports System.ComponentModel
Import edilecekler, Diagnostics ve ComponentModel
For Each p As Process In Process.GetProcesses()
p değişkeni çalışan uygulamaları almak için kullanacağımız değişken.
For Each ile bütün uygulamaları alacağız
Try
ListBox1.Items.Add(p.ProcessName & System.IO.Path.GetExtension(p.Modules(0).FileName))
Catch ex As Win32Exception
ListBox1.Items.Add(p.ProcessName)
End Try
Next
Daha sonra tüm uygulamaları listbox'a atıyoruz, ve döngüyü tekrarlattırıyoruz.