I have tried this, but get an error when saving the file:
X0 := ComObjCreate("Excel.Application") ;handle
X0.Visible := True ;by default excel sheets are invisible
X0.Workbooks.Add ;add a new workbook
X0.Range("A1").Value := "00123123" ;in Feld "A1" Text einfügen
Sleep 1000
test := "C:\test.xls"
X0.Excel.ActiveWorkbook.Save(test)
Can anybody tell me what I'm doing wrong?