Re: [python-win32] Dispatch InternetExplorer.Application fails

2008-05-29 Thread Rickey, Kyle W
? -Kyle Rickey -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Waldemar Osuch Sent: Wednesday, May 28, 2008 3:26 PM To: python-win32@python.org Subject: Re: [python-win32] Dispatch InternetExplorer.Application fails 2) use some python libraries (libxml2

Re: [python-win32] Dispatch InternetExplorer.Application fails

2008-05-28 Thread Gerdus van Zyl
? Kyle Rickey -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Golden Sent: Tuesday, May 27, 2008 2:46 PM Cc: python-win32@python.org Subject: Re: [python-win32] Dispatch InternetExplorer.Application fails Rickey, Kyle W wrote: Whenever I try

Re: [python-win32] Dispatch InternetExplorer.Application fails

2008-05-28 Thread Waldemar Osuch
2) use some python libraries (libxml2, libxslt) to transform the xml to html. That part works but now how to I make a pdf from the html file? I would use lxml for the transformation and wx for printing. The example below will prompt you with the dialog but it should be possible to silence it

[python-win32] Dispatch InternetExplorer.Application fails

2008-05-27 Thread Rickey, Kyle W
Whenever I try the following: import win32com.client ie = win32com.client.Dispatch(InternetExplorer.Application) I get this traceback: Traceback (most recent call last): File interactive input, line 1, in module File C:\Python25\Lib\site-packages\win32com\client\__init__.py, line 95, in

Re: [python-win32] Dispatch InternetExplorer.Application fails

2008-05-27 Thread Tim Golden
Rickey, Kyle W wrote: Whenever I try the following: import win32com.client ie = win32com.client.Dispatch(InternetExplorer.Application) I get this traceback: Traceback (most recent call last): File interactive input, line 1, in module File

Re: [python-win32] Dispatch InternetExplorer.Application fails

2008-05-27 Thread Rickey, Kyle W
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Golden Sent: Tuesday, May 27, 2008 2:46 PM Cc: python-win32@python.org Subject: Re: [python-win32] Dispatch InternetExplorer.Application fails Rickey, Kyle W wrote: Whenever I try the following: import