杀人跳舞 发表于 2012-7-9 17:49:09

QTP打开2007excel报错

打开导出的excel和expect文件对比的操作,现因actual文件格式变动改为office2007格式的,每次打开都会报个提示,点yes才可以打开excel文件


比对函数的前半部分如下:
                Set xlsApp = CreateObject("Excel.Application")
xlsApp.Visible = True
Set wkBook1 = xlsApp.WorkBooks.Open(sExpectedDataFile)
Set wkSheet1 = wkBook1.Worksheets(1)
' Set wkBook2 =
Set wkBook2 = xlsApp.WorkBooks.Open(sActualDataFile)
跑到最后这句的时候弹出报错信息“unable to get the open property of the workbook class”
请问哪位大侠知道怎么改才可以跳过那个提示框

joykao 发表于 2012-7-9 19:50:24

估计不支持07版本,试试03版 的。。。
页: [1]
查看完整版本: QTP打开2007excel报错