Win32all documentation?
Jason Orendorff
jason at jorendorff.com
Mon Dec 10 13:18:11 EST 2001
More information about the Python-list mailing list
Mon Dec 10 13:18:11 EST 2001
- Previous message (by thread): Win32all documentation?
- Next message (by thread): Monitoring the windows clipboard
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> Um... yes, though I may be splitting hairs. I've got > a pretty solid grasp of Python in general, and I've > been programming Windows in C/C++ for nearly 10 years. > The part I don't understand clearly is win32all > *itself*. The API is split across a number of modules, roughly on "subject matter" lines. >>> import win32gui >>> def my_callback(window, extra): ... title = win32gui.GetWindowText(window) ... if title: ... print title ... >>> win32gui.EnumWindows(my_callback, None) (70 lines of junk) >>> import win32net >>> print win32net.USE_LOTS_OF_FORCE 2 I found some documentation, but it's quite sparse: http://aspn.activestate.com/ASPN/Python/Reference/Products/ActivePython/Pyth onWin32Extensions/modules.html A few console-mode functions are in "import msvcrt". Good luck. -- Jason Orendorff http://www.jorendorff.com/
- Previous message (by thread): Win32all documentation?
- Next message (by thread): Monitoring the windows clipboard
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list