PyCWnd = FindWindowEx(parentWindow, childAfter
, className
, windowName
)
Searches for the specified top-level or child window
Parameters
parentWindow : PyCWnd
The parent whose children will be searched. If
None, the desktops window will be used.childAfter : PyCWnd
The search begins with the next window in
the Z order. If None, all children are searched.className : string
The window class name to find, else NonewindowName : string
The window name (ie, title) to find, else NoneReturn Value
The result is a PyCWnd (or derived) object, or a win32ui.error exception is raised.