python win32gui finding child windows
Posted
by nabizan
on Stack Overflow
See other posts from Stack Overflow
or by nabizan
Published on 2010-06-01T10:30:47Z
Indexed on
2010/06/01
11:03 UTC
Read the original article
Hit count: 182
for example at first you have to find hwnd of skype
hwnd = win32gui.FindWindow(None, 'skype')
and than all his child windows and their titles
child = ???
any idea?
© Stack Overflow or respective owner