本帖最后由 xiehuahere 于 2012-10-8 15:01 编辑
回复 1# lwz642246
_ExcelBookAttach 不是这么用的。
用法如下:
Local $oExcel
If WinExists("Excel 窗口标题") Then
$oExcel = ObjGet("", "Excel.Application") ; Get an existing Excel Object
If @error Then
MsgBox(0, "错误!", "获取对象失败!")
Exit 1
EndIf
_ExcelBookAttach("Excel 窗口标题", "Title")
Else
$oExcel = _ExcelBookOpen("Excel 文件路径")
If @error = 1 Then
MsgBox(0, "错误!", "无法创建对象!")
Exit 1
ElseIf @error = 2 Then
MsgBox(0, "错误!", "文件不存在!")
Exit 1
EndIf
EndIf
或者,用你的方法也可以,但attach后的下面一句要改一下:
$oExcel.Application.xxx.xx |