List of Programs running from taskbar [VB.NET 2003]

x2i

Member
Joined
Jan 26, 2007
Messages
5
Programming Experience
1-3
Hi, Im looking to make a simple taskbar that you can customize however Im having troubles getting the list of open programs from the taskbar, so far Ive managed to get the list of all running processes but as you know, these arent always shown in the taskbar.

Is there a way to display those displayed in the taskbar in a list on vb.net 2003? thanks in advance for any advice or help given :)
 
maybe something like this:
VB.NET:
For Each p As Process In Process.GetProcesses
    If p.MainWindowTitle <> "" Then ListBox1.Items.Add(p.MainWindowTitle)
Next
 
Back
Top