Re: pywin32 COM sort in Excel (late binding fails, early binding works) (+py2exe)

2006-10-20 Thread Kevin Grover
On Oct 19, 10:09 am, Thomas Heller <[EMAIL PROTECTED]> wrote: > Thomas- Hide quoted text -- Show quoted text - That's it thanks. A quick google search lead me to: http://www.py2exe.org/index.cgi/IncludingTypelibs Cheers - Kevin -- http://mail.python.org/mailman/listinfo/python-list

Re: pywin32 COM sort in Excel (late binding fails, early binding works) (+py2exe)

2006-10-19 Thread Thomas Heller
[EMAIL PROTECTED] schrieb: > ISSUE: COM Excel Sort works with Early Binding, but not Late Binding, > but py2exe only does Late Binding > > I have code similar to this (type from notes, so there may be a > typo...) > > import win32com.client > xl = win32com.client.Dispatch("Excel.Application") > x

pywin32 COM sort in Excel (late binding fails, early binding works) (+py2exe)

2006-10-19 Thread kogrover
ISSUE: COM Excel Sort works with Early Binding, but not Late Binding, but py2exe only does Late Binding I have code similar to this (type from notes, so there may be a typo...) import win32com.client xl = win32com.client.Dispatch("Excel.Application") xl.Visible = False xl.ScreenUpdating = False w