[python-win32] IRTD Interface differences in Excel 2003 and Excel 2007

2009-11-16 Thread Jack Cowden
I am working with the RTD functions in excel using pythoncom and a some great sample code from Chris Nilsson. In Excel 2003 and 2007, I am able to create my python object via the IRTDServer com interface. Excel then passes a callback interface, IRTDServerEvents to my object. I hold on to that

Re: [python-win32] IRTD Interface differences in Excel 2003 and Excel 2007

2009-11-16 Thread Tim Roberts
Jack Cowden wrote: I am working with the RTD functions in excel using pythoncom and a some great sample code from Chris Nilsson. In Excel 2003 and 2007, I am able to create my python object via the IRTDServer com interface. Excel then passes a callback interface, IRTDServerEvents to my

Re: [python-win32] IRTD Interface differences in Excel 2003 and Excel 2007

2009-11-16 Thread Christopher Nilsson
2009/11/17 Jack Cowden cowd...@gmail.com: I set up Excel and the COM Interfaces EXCEL_TLB_GUID = '{00020813---C000- 0046}' EXCEL_TLB_LCID = 0 EXCEL_TLB_MAJOR = 1 #EXCEL_TLB_MINOR = 4 #Excel 2003 EXCEL_TLB_MINOR = 6 #Excel 2007 via registry??? Is this correct? #