[python-win32] Python and Excel

2008-01-10 Thread Jd H
Hi there, I have the below python code that was working via Windows Task Scheduler on Windows 2000 Terminal Server: import os, commands from win32com.client import Dispatch myExcel.Workbooks.Add('C:/JD/billing/Billing-Report-' + str(today) + '.xls')

Re: [python-win32] Python and Excel via Cron

2007-11-21 Thread Jd H
\\test.xls') should read: myExcel.Workbooks.Add('C:\\Python24\\test.xls') myExcel.Workbooks.Add('C:\\Python24\\macro.XLA') myExcel.ActiveWorkbook.SaveAs('C:\\Python24\\test.xls') -Larry Jd H wrote: I am posting test.py again below: from win32com.client import