From: Evolve on
Hi All

I want to get all open windows from the taskbar at Desktop.

Can anyone suggest on approach how to acheive this.

Thanks
Evolve


From: Alex Blekhman on
"Evolve" wrote:
> I want to get all open windows from the taskbar at Desktop.

Use `EnumWindows' function to enumerate all top-level windows.

HTH
Alex


From: Evolve on
Hi Alex

I have used the aproach but more specifically I am interested in getting al
windows currently open in TaskBar.

Is there any way to get that.

Regards
Rajeev
"Alex Blekhman" <tkfx.REMOVE(a)yahoo.com> wrote in message
news:uBwUASmtIHA.576(a)TK2MSFTNGP05.phx.gbl...
> "Evolve" wrote:
>> I want to get all open windows from the taskbar at Desktop.
>
> Use `EnumWindows' function to enumerate all top-level windows.
>
> HTH
> Alex
>
>


From: Alex Blekhman on
"Evolve" wrote:
> I have used the aproach but more specifically I am interested in
> getting al windows currently open in TaskBar.
>
> Is there any way to get that.

`EnumWindows' enumerates all top-level windows, i.e. windows that
have no parent window (the Desktop is their parent). It is
top-level windows that you see in the TaskBar.

Alex