[python-win32] ImportError: No module named twisted.internet ?

2007-04-13 Thread Wursteisen David
Have you tried to install the last version of Twisted ? (http://twistedmatrix.com/trac/) uhm, do you know some good resources to do some modifications on this last version of this client ? Because earch time I try to launch it under windows with python, it crash... (I use the package BitTorrent

Re: [python-win32] How to make a standalone MFC script?

2007-04-13 Thread Grzegorz Adam Hankiewicz
Mark Hammond wrote: > It would be very difficult to try and host a web browser control in a > non-GUI application. You really are limited to hosting it in either > pythonwin or wxWindows. You should be able to get both of those > environments working with py2exe, but it might not qualify as a "st

[python-win32] Registering an excel addin

2007-04-13 Thread mjohnson
Apologies if this is in an incorrect format, but I have just stumbled on the list whilst trying to solve my problem from win32com.client import Dispatch xlApp = Dispatch("Excel.Application") time.sleep(40) xlApp.Visible = 1 wb=xlApp.Workbooks.Add() xlApp.RegisterXLL("C:\Program Files\TestApp\Prog

Re: [python-win32] Registering an excel addin

2007-04-13 Thread Mark Mc Mahon
Hi, The problem may be the following... "C:\Program Files\TestApp\Program\EXLXL32.XLL" != r"C:\Program Files\TestApp\Program\EXLXL32.XLL" Otherwise I have no idea about XLL files :-) Mark On 4/13/07, mjohnson <[EMAIL PROTECTED]> wrote: > Apologies if this is in an incorrect format, but I have j

Re: [python-win32] Registering an excel addin

2007-04-13 Thread Tim Roberts
mjohnson wrote: > Apologies if this is in an incorrect format, but I have just stumbled > on the list whilst trying to solve my problem > > from win32com.client import Dispatch > xlApp = Dispatch("Excel.Application") > time.sleep(40) > xlApp.Visible = 1 > wb=xlApp.Workbooks.Add() > xlApp.RegisterXL