Re: [python-win32] Module not found weirdness

2006-09-22 Thread Derick Van Niekerk
I'll uninstall everything in that hijaakthis.log and add them one by one until something breaks. Assuming it works when I uninstall everything :-\ -d-Even after completely uninstalling every memory resident program I installed, I still get the same error:pywintypes.error: (126, 'SetClipboardViewer'

Re: [python-win32] Module not found weirdness

2006-09-22 Thread Derick Van Niekerk
On 9/21/06, Tim Roberts <[EMAIL PROTECTED]> wrote: Derick Van Niekerk wrote:> Here's my log file...>> I hope it helps with figuring out the problemWell, there's a lot of stuff running here, but nothing that immediatelystands out. You're running both D-Link's AirPlus G utility and the Alpha Networks

Re: [python-win32] Module not found weirdness

2006-09-21 Thread Derick Van Niekerk
After rebooting the pywintypes.error message has changed slightly: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\test.py", line 23, in __init__ self.nextWnd = win32clipboard

Re: [python-win32] Module not found weirdness

2006-09-21 Thread Derick Van Niekerk
Unless you have been infected by a virus, user32.dll is not broken.Please eliminate that option from consideration.  Windows constantly monitors all of the critical system files and replaces them with hidden,cached copies if they change.Do you run any real-time virus or spyware checkers?  Have you

Re: [python-win32] Module not found weirdness

2006-09-21 Thread Tim Roberts
Derick Van Niekerk wrote: > > I uninstalled everything, deleted any remaining dirs, rebooted and > reinstalled only python, wx and win32. Still the same problem. So I'm > sure the problem is not with the python libs themselves... That is an unjustified conclusion. You may be sure that the probl

Re: [python-win32] Module not found weirdness

2006-09-21 Thread Derick Van Niekerk
Since you're getting pywintypes.error rather than an import error, the function is actually called.  Most likely the app that created the window (wxPython) isn't responding correctory.  You might want tocheck if you have the same version of wx on both machines. Yep - both versions turned out to be

Re: [python-win32] Module not found weirdness

2006-09-20 Thread Derick Van Niekerk
Since you're getting pywintypes.error rather than an import error,the function is actually called.  Most likely the app that created the window (wxPython) isn't responding correctory.  You might want tocheck if you have the same version of wx on both machines.I never even thought of that... I insta

Re: [python-win32] Module not found weirdness

2006-09-20 Thread Derick Van Niekerk
You might try running the dependency walker onsite-packages/win32/win32clipboard.pyd just in case, but I suspect you won't find anything.I don't know how...yet :) win32clipboard.SetClipboardViewer is a function inside ofwin32clipboard.pyd, which is a DLL in the Python directory.  It,eventually, ca

[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 "

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

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] 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] 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