[python-win32] Module not found weirdness

2006-09-19 Thread Derick Van Niekerk
When I execute the code here http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/355593 I get the following traceback:Traceback (most recent call last): File "C:\Documents and Settings\Derick\Desktop\test.py", line 73, in ? frame = TestFrame () File "C:\Documents and Settings\Derick\Desktop\te

Re: [python-win32] Pythonwin

2006-09-19 Thread Fuzzyman
Mark Hammond wrote: >>The first issue is that the run script dialog doesn't appear- instead >>the file open dialog appears, and re-appears when closed. >>This happens >>whenever the python version is run - whether from normal Python or >>Movable Python. >> >> > >I can't repro this - if I start

[python-win32] Service: path to .py script

2006-09-19 Thread Gregor Horvath
Hi, I have a testservice.py (see below). I installed the service successfully. (via commandlineoption install) The problem is that it runs only when it is in c:\windows\system32 or in the python path. I added the desired path (Y:\) to the PYTHONPATH environment variable for the system account and

Re: [python-win32] Module not found weirdness

2006-09-19 Thread Tim Roberts
Derick Van Niekerk wrote: > When I execute the code here > http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/355593 I get > the following traceback: > > Traceback (most recent call last): > File "C:\Documents and Settings\Derick\Desktop\test.py", line 73, in ? > frame = TestFrame () > File

[python-win32] Fatal Error

2006-09-19 Thread Ahmed, Shakir
I am running a script and getting the following error, any idea is highly appreciated. The script is mainly a loop work for sixteen time and raises the error on 10th cycle. NO free BITSYS Channels (BITCHN) Thanks Shakir ___ Python-win32 mailing li

Re: [python-win32] Fatal Error

2006-09-19 Thread Gabriel Genellina
At Tuesday 19/9/2006 16:09, Ahmed, Shakir wrote: I am running a script and getting the following error, any idea is highly appreciated. The script is mainly a loop work for sixteen time and raises the error on 10th cycle. NO free BITSYS Channels (BITCHN) This is not a Python error, it's gen

Re: [python-win32] Module not found weirdness

2006-09-19 Thread Derick Van Niekerk
You ran dependency walker on which file?I ran it on python.exe, pressed F7, then  loaded my .py file by specifying the filename in the arguments field. > The other win32clipboard functions work fine as well, like getting and > setting the clipboard contents. I have found that SetClipboardViewer (>

Re: [python-win32] Fatal Error

2006-09-19 Thread John Machin
On 20/09/2006 5:09 AM, Ahmed, Shakir wrote: > > I am running a script and getting the following error, any idea is > highly appreciated. > > The script is mainly a loop work for sixteen time and raises the error > on 10th cycle. > > > NO free BITSYS Channels (BITCHN) > Dear Shakir, It is a g

Re: [python-win32] Module not found weirdness

2006-09-19 Thread Tim Roberts
Derick Van Niekerk wrote: > You ran dependency walker on which file? > > > I ran it on python.exe, pressed F7, then loaded my .py file by > specifying the filename in the arguments field. You might try running the dependency walker on site-packages/win32/win32clipboard.pyd just in case, but

[python-win32] Module not found weirdness

2006-09-19 Thread Roger Upole
Derick Van Niekerk wrote: > When I execute the code here > http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/355593 I get the > following traceback: > > Traceback (most recent call last): > File "C:\Documents and Settings\Derick\Desktop\test.py", line 73, in ? > frame = TestFrame () > File "

[python-win32] How to launch acrobat with data

2006-09-19 Thread Andrew Diederich
Hello python-win32, I'm storing some Adobe forms (application/vnd.fdf) in a database. Using ADODBAPI I've been able to pull the data out. Does anyone know how I can launch Adobe Acrobat with the data? Here's how I get the data: >>> import adodbapi >>> conn = adodbapi.connect('Driver={SQL Server

Re: [python-win32] Service: path to .py script

2006-09-19 Thread Mark Hammond
Is Y: a mappyed network drive? If so, the problem will be that the mapping does not exist for the service account (and if you are using LocalSystem, it will not be possible/sensible to add it) Mark > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Behalf Of Gre

Re: [python-win32] Service: path to .py script

2006-09-19 Thread Gregor Horvath
Mark Hammond schrieb: > Is Y: a mappyed network drive? If so, the problem will be that the mapping > does not exist for the service account (and if you are using LocalSystem, it > will not be possible/sensible to add it) Thanks a lot. This was indeed the problem. -- Greg