Thanks for your quick reply, Gintaras!
Actually, some ExcelSheet functions work, for example this code runs without errors:
Seems like only ExcelSheet__Range function doesn't work
I need to loop through cells and set their values using counters as cell addresses.
Is there a workaround for it, without using SetCell?
Actually, some ExcelSheet functions work, for example this code runs without errors:
typelib Excel
Excel.Application a._create
Excel.Workbook b=a.Workbooks.Add()
ExcelSheet es.ws=b.Worksheets.Item(1)
es.Activate(4) ;;activate Excel
es.ws.Application.Sheets.Item(1).Name = "Object Browser"
int intWindow=win("" "XLMAIN")
max intWindow
str FilePath.expandpath("$desktop$\Object Browser.xls")
del FilePath; err
b.SaveAs(FilePath @ @ @ @ @ 1)
es.ws.Application.ActiveSheet.Range("A1").Value = "Object"
es.ws.Application.ActiveSheet.Range("B1").Value = "Member"
es.ws.Application.ActiveSheet.Range("C1").Value = "Definition"
I need to loop through cells and set their values using counters as cell addresses.
Is there a workaround for it, without using SetCell?