Question How can I populate a list of the running user started applications?

birddseedd

Member
Joined
Nov 18, 2008
Messages
6
Programming Experience
Beginner
I need to make a list in a combo box of applications that the user has started. Not simply all processes that are running in the back ground.

system.diagnostics will give me a list of every running process.

Perhaps can I populate a list of processes running in the task bar???
 
You can use WMI class Win32_Process and its GetOwner method.
 
Back
Top