icons of task manager??
-
the windows task manager application tab shows the application name as wellas the icon associated to that application/process. i was making a listup of the applications that were running [task manager clone] this i did by using the enumWindows API along with checks on the style sof the window handles obtained and it is working however dunno how to display the icon associated with a process. any advice!!
-
the windows task manager application tab shows the application name as wellas the icon associated to that application/process. i was making a listup of the applications that were running [task manager clone] this i did by using the enumWindows API along with checks on the style sof the window handles obtained and it is working however dunno how to display the icon associated with a process. any advice!!
Try
WM_GETICON
, I don't know if it works between processes but it's worth a try. If that fails, callGetClassInfo()
to fill in aWNDCLASS
struct that describes the window's class. In the struct is anHICON
. --Mike-- Personal stuff:: Ericahist | Homepage Shareware stuff:: 1ClickPicGrabber | RightClick-Encrypt CP stuff:: CP SearchBar v2.0.2 | C++ Forum FAQ Kosh reminded me of some of the prima-donna programmers I've worked with. Knew everything but when you asked them a question; never gave you a straight answer. -- Michael P. Butler in the Lounge