> Does anyone know the appropriate functions to call to narrow down > these window handles to just those that are present in the taskbar?
Checking the window is a "top-level" window gives a better result for me.
ie:
if IsWindowVisible(hwnd) and not GetWindowLong(hwnd, win32con.GWL_STYLE)
& win32con.WS_CHILD:
Mark
_______________________________________________
Python-win32 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-win32
