Autohotkey L Introduction
"Autohotkey L is power option for autohotkey original"
- Create object for Excel Apps.
Xl := ComObjCreate("Excel.Application")
- Open Excel file.
Xl_Workbook := Xl.Workbooks.Open("C:\Book1.xlsx")
- Show Excel file.
Xl.Visible := True
- Access to Data.
y := Xl.Sheets(1).Range("A1").Value
Loop, 3 {
x := Xl.Sheets(1).Range("D" . A_Index).Value
}
- Save Excel file.
Xl_Workbook.Save()
- Close Excel file.
Xl.Workbooks.Close
Comments
Post a Comment