Re: [python-win32] create word document?

2005-10-05 Thread Tim Roberts
On Tue, 4 Oct 2005 01:33:07 -0700 (PDT), ng hsiaohui [EMAIL PROTECTED] wrote: I am creating MS word document using python win32. import win32com.client w = win32com.client.Dispatch(word.application) doc = w.Documents.Add(c:/test.doc) After that where can I find the command use to write

Re: [python-win32] create word document?

2005-10-05 Thread Gabriel Genellina
At Tuesday 4/10/2005 12:20, [EMAIL PROTECTED] wrote: A final approach would be to record a macro of what you trying to do and then examine the code to find the appropriate objects, interfaces and methods. I consider this the easiest way, specially when you don't know how the exposed objects

Re: [python-win32] create word document?

2005-10-04 Thread eric . powell
/04/2005 04:33 AM To python-win32@python.org cc Subject [python-win32] create word document? Hi, I am creating MS word document using python win32. import win32com.client w = win32com.client.Dispatch(word.application) doc = w.Documents.Add(c:/test.doc) After that where can I find