vb远程读取txt文件的详细代码怎么写
发布网友
发布时间:2024-10-14 10:05
我来回答
共3个回答
热心网友
时间:2024-10-14 16:20
这个不用控件的可以用input或者line input方法例如:Open "(路径)\in.txt" For Input As #1
For j = 1 To 100
Input #1, a(j)
Text1.Text = Text1.Text & a(j) & String(6 - Len(Str(a(j))), " ")
Next
Close #1
这个是读取in.txt中数据的(路径适当修改),将数据放入a()数组中并在text1中显示。
热心网友
时间:2024-10-14 16:20
先添加控件
Microsoft Internet Transfer Control 6.0
然后在需要的地方写以下代码:
Text1.text= Inet1.OpenURL("http://www.qq.com/im.txt")
MsgBox Text1.text
热心网友
时间:2024-10-14 16:21
open语句路径不支持url,先下载到磁盘,再读取