读文本文件到文本框-VB自学课件

时间:2024-05-13 17:31:11
【文件属性】:

文件名称:读文本文件到文本框-VB自学课件

文件大小:2.97MB

文件格式:PPT

更新时间:2024-05-13 17:31:11

VB学习

读文本文件到文本框 假定文本框名称为txtTest,文件名为MYFILE.TXT。 方法1:一行一行读 txtTest.Text = "" Open "MYFILE.TXT" For Input As #1 Do While Not EOF(1) Line Input #1, InputData txtTest.Text = txtTest.Text + InputData+vbCrLf Loop Close #1


网友评论