I am looking to go from the process name to the windows title.
e.g
'winamp.exe' -> '1. Britney Spears - Hit me baby one more time'
Thanks
Solution:
Dim p As Process
For Each p In Process.GetProcessesByName("winamp")
MsgBox(p.MainWindowTitle.ToString)
Next