Click to See Complete Forum and Search --> : process icon


elham
March 8th, 2009, 05:16 AM
how i can get the icon associated for each process in the task manager in c#?

enfekted
March 8th, 2009, 02:57 PM
1. You can get a list of the processes by using Process.GetProcesses()
2. Then you can get the associated icon using Icon.ExtractAssociatedIcon()

hth