欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

adodb.stream讀文件到數(shù)組的代碼

 更新時(shí)間:2008年08月01日 23:34:53   作者:  
用adodb.stream讀取文件并保存為數(shù)組的實(shí)現(xiàn)代碼
Function filenum(filename,i)
Dim st,s 
Set st= CreateObject("ADODB.Stream")
st.Type = 2 '流類型為文本
st.Mode = 3 '模式為讀寫
st.Open
st.LineSeparator=13 
st.LoadFromFile filename
Do While Not St.EOS 
s = Split(st.readtext(), vbCrLf)   
Loop 
'MsgBox UBound(s) total
filenum=s(i)
st.Close
End function


MsgBox filenum("file.txt",2)

相關(guān)文章

最新評論