Re: [python-win32] Need help creating a wheel of pywin32

2014-03-02 Thread Mark Hammond
On 1/03/2014 5:35 PM, Vye wrote: Is there a way I can create a wheel by using the prebuilt binaries since they are just zip archives? I would prefer to do it this way. For your purposes, just extracting (via zip) the files in the pre-built binaries should get you going. Depending on exactly w

Re: [python-win32] win32api & win32gui help

2014-03-02 Thread Roger Upole
Where does the hardcoded 9 come from in this line ? win32api.PostMessage(hwnd,message,1,9) If I'm interpreting the docs correctly, that parm should be a handle to a top-level window you create yourself that receives messages from the app. Also, you'll need to be running a message

Re: [python-win32] Need help creating a wheel of pywin32

2014-03-02 Thread Roger Upole
Can you try building from a Mercurial checkout ? Looks like some files aren't being included in the source dist download. Appears that our Manifest.in needs to be updated, as there are also a few other things missing. Roger "Vye" wrote in message news:cabyyas+du_icyjfzet0dfk0t2hzwayhc_ndwk

[python-win32] Fwd: Need help creating a wheel of pywin32

2014-03-02 Thread Vye
It doesn't look like my original email went through. If it did, I apologize for the noise. --Vye Begin forwarded message: > From: Vye > Date: February 28, 2014 at 10:35:42 PM PST > To: python-win32@python.org > Subject: Need help creating a wheel of pywin32 > > Hi, > > I have some Python pro

[python-win32] win32api & win32gui help

2014-03-02 Thread Joe Bennett
Hi, Looking for a good simple remedial course on getting my python script to talk to a Windows program. The author of the windows program has documented the api here: http://www.logger32.net/help/Logger32/Using%20the%20Logger32%20External%20Interface.htm I'm struggling to understand how to impl

[python-win32] Need help creating a wheel of pywin32

2014-03-02 Thread Vye
Hi, I have some Python programs running on Windows that require pywin32 to be installed. I want to leverage our CI environment to automatically test and freeze them for me. Our CI uses tox so I need to be able to install pywin32 using pip. I've never built a python package before but after some re