这个代码是从金字塔培训视频课程里抄下来的:
这个代码只能启动excel,没有打开record.xlsx的文件,是什麽原因?
call openexcelfile()
sub openexcelfile()
on error resume next
set excelapp=getobject("excel.application")
if err.nuber<>0 then
set excelapp=creatobject("excel.application")
set excelapp=getobject("E:\documents\record.xlsx")
else
set excelapp=excelapp.workbooks("record.xlsx")
if err.number<>0 then
set excelapp=getobject("E:\documents\record.xlsx")
end if
end if
excelapp.parent.windows("E:\documents\record.xlsx").activate
excelapp.application.displayformulabar=false
if excelapp.application.visible=false then
excelapp.application.visible=true
end if
excelapp.application.displayalerts=false
end sub
http://222.73.7.161/bbs/index.asp?boardid=5&TopicMode=0&List_Type=6,0,0&page=
看下高级区这里有几个excel的范例的
另外您哪里看的视频,那个可能是其他人做的金字塔培训视频吧,这种vba的相关操作都是需要客户自己去完成的,类似的接口api都是vba自己的