Re: [python-win32] Problem with simple example

2008-07-29 Thread Dahlstrom, Roger
l window, with Book1 visible and active, with the word "Hello" in row 1 column A. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Murr Von Kater Sent: Tuesday, July 29, 2008 9:35 AM To: python-win32@python.org Subject: [python-win32] Pr

Re: [python-win32] Problem with simple example

2008-07-29 Thread Pochon Jérémie
https://sourceforge.net/tracker/?func=detail&atid=551954&aid=1998611&group_id=78018 2008/7/29 Murr Von Kater <[EMAIL PROTECTED]> > Hi all! > > I'm beginer in python-win32 and i try a simple example which is described > in "Python for Win32 Extensions Help": > > import win32com.client > o = win32c

[python-win32] Problem with simple example

2008-07-29 Thread Murr Von Kater
Hi all! I'm beginer in python-win32 and i try a simple example which is described in "Python for Win32 Extensions Help": import win32com.client o = win32com.client.Dispatch("Excel.Application") o.Visible = 1 o.Workbooks.Add() # for office 97 – 95 a bit different! o.Cells(1,1).Value = "Hello" But