Re: [python-win32] win32com.client.dispatch

2010-04-21 Thread Tim Roberts
Murali Prasath wrote: > > I am handling excel application using python. > > Could anybody please provide me full list of the functions > win32.com.client.dispatch provides? > > I have few with me that are Sheets, > Dispatch("Excel.Application").Workbooks.Open(), > Cur_sheet.UsedRange.Rows.Co

[python-win32] win32com.client.dispatch

2010-04-21 Thread Murali Prasath
Hi All, I am handling excel application using python. Could anybody please provide me full list of the functions win32.com.client.dispatch provides? I have few with me that are Sheets, Dispatch("Excel.Application").Workbooks.Open(), Cur_sheet.UsedRange.Rows.Count etc.. To mention precisely what

Re: [python-win32] win32com.client.Dispatch("MAPI.Session") error exchange 2003

2005-11-13 Thread Adnan Chowdhury
Found the answer at http://groups.google.com/group/comp.lang.python/browse_frm/thread/20f31e67c4d01d31/4d984204876e3319?q=exchange&rnum=35#4d984204876e3319 (comp.lang.python:"Q: Basic MAPI") You have to specifically install CDO components when installing Outlook 2003, it is not installed by defaul

[python-win32] win32com.client.Dispatch("MAPI.Session") error exchange 2003

2005-11-13 Thread Adnan Chowdhury
I'm trying to connect to an Exchange 2003 server win ActiveState's python implementation 2.4.1. When I run the following code: import win32com.client session = win32com.client.Dispatch ("MAPI.Session") session.Logon (ProfileName="Adnan Chowdhury") I get this error: Traceback (most recent call las

Re: [python-win32] win32com.client.Dispatch problem

2005-06-24 Thread Thomas Heller
Amit Upadhyay <[EMAIL PROTECTED]> writes: > Hi, > > So here is my problem, I have to implement a com server, that would be used > by DotNet application, which can not work with late binding (apparently they > don't have CreateObject of VB). So i am following the approach suggested by > http://s

[python-win32] win32com.client.Dispatch problem

2005-06-24 Thread Amit Upadhyay
Hi, So here is my problem, I have to implement a com server, that would be used by DotNet application, which can not work with late binding (apparently they don't have CreateObject of VB). So i am following the approach suggested by http://starship.python.net/crew/theller/ctypes/sum_sample.html, a