发新话题
打印

[基础] 请教一位高人

请教一位高人

VB中怎么从.TXT文件中读数据

TOP

open "文件名" for input as #1
dim strline as string
dim strtext as string
do until eof(1)
    line input #1,strline
    strtext=strtext+vbcrlf+strline
loop
close #1

TOP

楼主应当看看基本的VB函数和语句。
换个头像,看见广告就眼红,直接封ID。

TOP

发新话题