CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: process icon

  1. #1
    Join Date
    Feb 2009
    Posts
    28

    process icon

    how i can get the icon associated for each process in the task manager in c#?

  2. #2
    Join Date
    Feb 2004
    Location
    Seattle, USA
    Posts
    137

    Re: process icon

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured