发新话题
打印

[基础] 请教一位高人

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

发新话题