List open application windows

bortiquai

Member
Joined
Jul 5, 2007
Messages
17
Programming Experience
Beginner
I have a regular form. When you click the button, i would like it to display a list of currently open application windows (the ones that are in the task bar at the bottom). I can't seem to find where to start. Can someone tell me the API i would use for this?
Thanks
 
I have a regular form. When you click the button, i would like it to display a list of currently open application windows (the ones that are in the task bar at the bottom). I can't seem to find where to start. Can someone tell me the API i would use for this?
Thanks



Dim ListProcess() As Process = Process.GetProcesses()

buy importing System.diagnostics


Reply , How It Helped
 
Back
Top