Re: [python-win32] building pywin32 for python 2.6...

2013-01-30 Thread Jerry Hill
On Wed, Jan 30, 2013 at 9:29 AM, SEIGAL Nick wrote: > I am trying to get pywin32 build 218 installed and am having trouble. Here > is the error I am getting: ... > Any suggestions? Install using one of the installers from http://sourceforge.net/projects/pywin32/files/pywin32/Build%20218/ instead

Re: [python-win32] pywin32 py2exe

2011-06-06 Thread Jerry Hill
On Fri, Jun 3, 2011 at 6:55 AM, Umesh Sharma wrote: > i = input    #waiting till event captured This doesn't wait for anything. It assigns the function input to the local name i. You probably want "i = input()" instead, which will force the dos window to stay open until the user hits enter. Pl

Re: [python-win32] Enable/disable Remote Desktop via Python

2010-05-16 Thread Jerry Hill
On Sat, May 15, 2010 at 10:44 AM, Tony Cappellini wrote: > There is a checkbox in Control Panel to do this microsoft has provided > it for the user. > I want to enable/disable that checkbox via Python, and want to know > how it can be done. You'll probably need to figure out what checking that ch

Re: [python-win32] Fwd: Running a python script in the system tray

2008-07-04 Thread Jerry Hill
On Fri, Jul 4, 2008 at 6:35 AM, Ferdinand Sousa <[EMAIL PROTECTED]> wrote: > Also, is there a way I can capture keyboard events? Tim Golden has an article showing how to register with windows to receive hotkey notifications: http://tgolden.sc.sabren.com/python/win32_how_do_i/catch_system_wide_hotk

Re: [python-win32] Problem with Rhapsody automation: It is Impossible?

2007-08-02 Thread Jerry Hill
On 8/2/07, sccs cscs <[EMAIL PROTECTED]> wrote: > # HERE IS THE ERROR: The theIRPModelElement is a "IRPType" which is > # a specialization of a IRPModelElement, but Python continue to see > it like an IRPModelElement Take a look at the win32com.client.CastTo() function. You probab

Re: [python-win32] Help needed : FindWindowEx

2007-05-03 Thread Jerry Hill
On 5/3/07, Tim Roberts <[EMAIL PROTECTED]> wrote: > Oh, there is. You can watch for the WM_DEVICECHANGE message, which > fires every time there is a plug-and-play event. Once you get that > message, you can go enumerate the devices in your device class using the > SetupDi APIs to see if you are p