原帖由 海龙 于 2006-5-30 09:30 发表
用VBScrip编写的存取文本文件、Excel文件的演示代码。
同时鼓励大家将自己完成的代码拿出来共享。
Dim orderno,conn,input,output,filename '<-output没有用到
filename="C:\Test.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 [sheet1$] " ,conn,2,2
input.MoveFirst
MsgBox "Name: "& input("name") & VbCrLf & "Age: " & input("age") & VbCrLf & "Tel: " &input("Tel"),,"www.51testing.com"
input.AddNew
input("name")="王五"
input("age")="34"
input("Tel")="33445566"
input.Update
input.close
Set output=Nothing '<-output如果没有用到的话这里是不是应该是input
Set conn=Nothing
____________________________________________________________________________________________
再次感谢海龙老师知识分享! |