I'm trying to build a TaskBar similar application, how to enum running applications? (Advanced Q)
C#
1
Posts
1
Posters
0
Views
1
Watching
-
So far I've managed to do so by EnumDesktopWindows (user32.dll). But I get all windows regardless whether they can displayed on the taskbar. So I'm using isWindow and isWindowVisible but still I don't get the same results as shows on the taskbar. My goal is to create a list of running application that currently showing in the taskbar only. No systray apps!!! My next goal is to get the application Icon and show it (as taskbar does); No idea how to do so. I tried ExtractIcon but did nothing... Any Idea? tnx u all...