home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 September - Disc 1 / PCNET_CD_2006_09.iso / shareware / autoit-v3-setup.exe / Examples / Helpfile / With.au3 < prev   
Encoding:
Text File  |  2006-06-17  |  186 b   |  11 lines

  1. $oExcel = ObjCreate("Excel.Application")
  2. $oExcel.visible =1
  3. $oExcel.workbooks.add
  4.  
  5. With $oExcel.activesheet
  6.     .cells(2,2).value = 1
  7.     .range("A1:B2").clear
  8. Endwith
  9.  
  10. $oExcel.quit
  11.