[python-win32] Problem Automating IE on W7

2011-05-04 Thread Jeff Peery
Hello, I'm using the code pasted below to print a document with internet explorer. The code worked great on my XP machine. I moved it to my W7 machine and it gives the error below. The weird thing is that it works great if printing a html doc from the web (such as

Re: [python-win32] Problem Automating IE on W7

2011-05-04 Thread Jeff Peery
List Subject: Re: [python-win32] Problem Automating IE on W7 Jeff Peery wrote: I'm using the code pasted below to print a document with internet explorer. The code worked great on my XP machine. I moved it to my W7 machine and it gives the error below. The weird thing is that it works great

Re: [python-win32] permissions error

2010-02-13 Thread Jeff Peery
in the appdata folder.   thanks for those who offered advice, Jeff --- On Fri, 2/12/10, Preston Landers pland...@gmail.com wrote: From: Preston Landers pland...@gmail.com Subject: Re: [python-win32] permissions error To: Jeff Peery jeffpe...@yahoo.com Date: Friday, February 12, 2010, 10:30 PM I don't know

[python-win32] permissions error

2010-02-11 Thread Jeff Peery
Hello, I'm running on vista and I'm getting a permissions error from win32com. I attached a print screen displaying the error message. It appears win32com is trying to write a file and vista UAC is blocking it. Why is win32com trying to do this and how do I fix it? the only method I am using

[python-win32] dispatchwithevents not catching events

2009-09-02 Thread Jeff Peery
Hello, I'm having trouble catching events when I use dispatchwithevents.   I have a wxapp that uses com and I catch OPCDataChangeEvents (OPC, OLE for process automation) from an opc server. things work quite well in this case, i.e., I am able to catch the data change events.    The problem

Re: [python-win32] problem accessing OPC clients from thread

2007-12-13 Thread Jeff Peery
an event from the GroupEvents.OnDataChange method to the wxApp so that I can catch the data change event in the wxApp? How is this typically done? Big Thanks! Jeff Graham Bloice [EMAIL PROTECTED] wrote: Jeff Peery wrote: thanks for the beta! I think my main problem is that I

Re: [python-win32] problem accessing OPC clients from thread (Graham Bloice)

2007-12-03 Thread Jeff Peery
Jeff Peery wrote: Hello, I'm getting in a bit over my head here and need some help. I'm running a simple wxpython application that runs a thread in the background. The thread is supposed to read and write data to/from an OPC server - which I use to communicate to a PLC (programmable

Re: [python-win32] problem accessing OPC clients from thread

2007-12-03 Thread Jeff Peery
appreciate your help! Jeff Jeff Peery wrote: Hello, I'm getting in a bit over my head here and need some help. I'm running a simple wxpython application that runs a thread in the background. The thread is supposed to read and write data to/from an OPC server - which I use

Re: [python-win32] problem accessing OPC clients from thread

2007-12-03 Thread Jeff Peery
Roberts [EMAIL PROTECTED] Subject: Re: [python-win32] problem accessing OPC clients from thread To: Python-Win32 List python-win32@python.org Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=UTF-8 Jeff Peery wrote: Graham, thanks for the beta! I think my main problem

Re: [python-win32] win32com problem with LabVIEW (newbie question)

2005-06-24 Thread Jeff Peery
Hello, I am fairly new to python. I use wx python at work to make different pieces of engineering code. I am very interested to learn about how to communicate between python and labView... this discussion caught my eye (Re: win32com problem with LabVIEW). Could someone give me an idea of where

[python-win32] (no subject)

2005-01-26 Thread Jeff Peery
Hello, I am using wxpython and I am having trouble passing variables from one frame to another. If I have a parent frame frame1 and I call a dialog using the following text: dlg = wxDialog2.wxDialog2(self) try: dlg.ShowModal() finally: dlg.Destroy() where in this bit of