vb读取文本所有内容

将C:\1.txt读取到text1

第1个回答  2009-07-12
dim fName as string
dim FileNum as long
dim strFile as string

fName="d:\test.txt"
FileNum=freefile
open fName for binary as FileNum
strFile=space(lof(FileNum))
get FileNum,,strFile
close
text1=strFile

如果文本文件中有回车,要设置text1的MultiLine为true
第2个回答  推荐于2016-02-26
建Text1,代码如下。
==============
Private Sub Form_Load()
Open "c:\1.txt" For Input As 1
Text1.Text = StrConv(InputB(LOF(1), 1), vbUnicode)
Close
End Sub本回答被提问者采纳
第3个回答  2009-07-12
open 文件 然后do loop 然后连接数据赋值到text1

既然没分,那么只好说思路
第4个回答  2009-07-12
open ............
write...........
close ..............
好像是这个 好久没玩了
第5个回答  2009-07-12
看一下msdn的《文件》部分 没有就在网上下一个msdn for vb

用readline或其他都可以
相似回答