如何用vb读取一个指定路径的txt文件呢?
答案:1 悬赏:80 手机版
解决时间 2021-02-11 02:01
- 提问者网友:爱了却不能说
- 2021-02-10 14:35
如何用vb读取一个指定路径的txt文件呢?txt文件内大约有4列、80行左右的数据。并显示在label 里面。哪位大神可以帮忙编写一下源代码呢?
最佳答案
- 五星知识达人网友:掌灯师
- 2021-02-10 16:00
80行内容放在一个lable里面吗,下面的例子读前两行,需要多行自己修改为循环:
open "c:\a.txt" for input as #1
line input #1,s1
line input #1,s2
close #1
Label1.Caption=s1 & s2
open "c:\a.txt" for input as #1
line input #1,s1
line input #1,s2
close #1
Label1.Caption=s1 & s2
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯