Re: pythoncom -- ImportError: DLL load failed - Solved, sort of.

2009-04-24 Thread Mark Hammond
Richard Whidden wrote: I installed a clean copy of Python 2.5, pywin32 and PyGreSQL and it works. I'll have to figure out what broke with my 2.6 install. Make sure you have 2.6.2 Mark -- http://mail.python.org/mailman/listinfo/python-list

Re: pythoncom -- ImportError: DLL load failed - Solved, sort of.

2009-04-24 Thread Richard Whidden
I installed a clean copy of Python 2.5, pywin32 and PyGreSQL and it works. I'll have to figure out what broke with my 2.6 install. Thanks for letting me scribble here. "Richard Whidden" wrote in message news:002a58fa$0$25248$c3e8...@news.astraweb.com... > I've sniffed around for a solution to

Re: pythoncom -- ImportError: DLL load failed - Update

2009-04-24 Thread Richard Whidden
By including the following DLLs on a Windows 2000 image I have running Python 2.5, my little sample app works... comerr32.dll krb5_32.dll libintl-8.dllpython26.dll gssapi32.dll libeay32.dll libpq.dllssleay32.dll k5sprt32.dll libiconv-2.dll python25.dll msvcm90.dl

pythoncom -- ImportError: DLL load failed

2009-04-24 Thread Richard Whidden
I've sniffed around for a solution to this problem but I can't find anything. The simple COM example in the "Programming on Win32" O'Reilly book works fine. However, as soon as I add 'import pgdb' to the object, chaos ensues promply. Here's what I did. Step 1, write this: foo.py -- # pri