我在冒犯和做简单基础方面说得很新,我设法通过行文进入并阅读了具体档案线。 如果我想用 com子或空间分门别类,然后按字母或数字进行分类,那么我将如何采用这一程序? 我是否在阅读圈子内制造一个 lo,以平息信息? 树立榜样将真正有助于...... 感谢!
Dim file As String = "C:Users est.txt"
Dim Line As String
If System.IO.File.Exists(file) = True Then
Dim objReader As New System.IO.StreamReader(file)
Do While objReader.Peek() <> -1
Line = Line & objReader.ReadLine() & vbNewLine
Loop
Next
Label1.Text = Line
objReader.Close()
Else
MsgBox("File Does Not Exist")
End If