Private Sub Command1_Click()
Dim strFilename As String
Dim strLine As String
CommonDialog1.ShowOpen
strFilename = CommonDialog1.FileName
Text1.Text = ""
filenum = FreeFile
If strFilename <> "" Then
Open strFilename For Input As filenum
Do While Not EOF(filenum)
Line Input #filenum, strLine
Text1.Text = Text1.Text + strLine + Chr(13) + Chr(10)
Loop
Close filenum
End If
End Sub
问题:
1、为什么在读入大量的数据的时候会很慢(比如一行5个数据,共8000行的数据)??
2、而且读进TEXT1.TEXT的数据也不全(比如一行5个数据,共8000行的数据,只能读进去一部分)??
比如说把上传的示例数据文件读入,就读不全,而且很慢!