求vbscript 操作excel接口大全
qtp里面用vbscript操作excel进行数据存取,表格格式变换等功能我找不到有关说明excel那些接口给vbscript操作的
帮忙给一个把
谢谢了先 连接EXCEL有两个方法,一个是通过ADO和EXCEL表相连,那么这种方法是和连接数据库一样的.
Dim conn,input,filename
filename="c:\Order_info.xls" '
Set conn= createobject("ADODB.Connection")
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source="&filename&";Extended Properties='Excel 8.0;hdr=yes'"
Set input= createobject("ADODB.Recordset")
input.Open "select* from " ,conn,2,2
input.close
Set input=nothing
Set conn=Nothing
还有一种是可以通过创建对象来做
Set Excel=CreateObject("Excel.Application")
Set ExcelSheet = CreateObject("Excel.Sheet") 拜楼上一个
非常好的 QTP and Excel 的资料
QTP and Excel :http://www.qaforums.com/ultimatebb.php?ubb=get_topic;f=20;t=005719
太感谢楼上了,终于找到了微软的vbs说明
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_2003_ta/html/odc_landoffice03_vba.asp回复 4# 的帖子
谢谢 这个东西太好了! 额。我怎么进去了还是没有找到 我汗,全英文 教你个简单的办法打开一个excel,alt+f11
然后在打开帮助!
word 类似 为啥不去看qtp安装目录下的帮助文件呢,它里面很全的
页:
[1]