标题: 小弟碰到一个问题,请各位大虾指导一下 [打印本页] 作者: skyhen 时间: 2006-8-24 10:25 标题: 小弟碰到一个问题,请各位大虾指导一下 小弟现在想用QTP连接EXCEL,先创建一个EXCEL文件,然后对这个EXCEL文件进行写入数据的操作。
请各位大虾给小弟一点指导,小弟先谢谢了。作者: walker1020 时间: 2006-8-24 11:08
在本论坛里面搜索一下,论坛里面有不少关于EXCEL 的帖子。作者: xiaonan 时间: 2006-8-24 14:30 http://bbs.51testing.com/thread-41881-1-1.html作者: 麦子华华 时间: 2006-8-24 14:43
QuickTest plus的帮助里也有很多有关Excel的操作事例作者: lyscser 时间: 2006-8-24 14:53
就是就是作者: chill 时间: 2006-8-25 10:43
看help目录下的帮助文档作者: skyhen 时间: 2006-8-25 13:08
我看了帮助问题解决了谢谢各位对小弟的帮助作者: sinpa 时间: 2006-8-25 16:11 标题: help中的语句为什么无法执行阿 Dim ExcelSheet
Set ExcelSheet = CreateObject("Excel.Sheet") ' Make Excel visible through the Application object.
ExcelSheet.Application.Visible = True ' Place some text in the first cell of the sheet.
ExcelSheet.ActiveSheet.Cells(1,1).Value = "This is column A, row 1"
' Save the sheet.
ExcelSheet.SaveAs "m:\TEST.XLS"
' Close Excel with the Quit method on the Application object.
ExcelSheet.Application.Quit
' Release the object variable.
Set ExcelSheet = Nothing