Quote Originally Posted by NosFtw View Post
Try this

VB.Net Code:
  1. For Each p As Process In Process.GetProcesses
  2.         If Not p.MainWindowTitle = Nothing Then
  3.             MenuStrip1.Items.Add(p.ProcessName.ToLower)
  4.         End If
  5. Next
Tnkx fixed problem 1!