我點擊一個按鈕(使用此代碼)將文件「testexam」中的行加載到列表框「lstHere」中。 Testexam將被另一個程序更新,我想要一個代碼將「testexam」的新行復制到「lstHere」的底部。其次,選定的索引應該列入新列表的第一項。任何幫助將不勝感激。VB.net從文件中更新列表項
Private Sub
Dim MReader As New StreamReader("C:\Users\Sparrow\testexam.txt")
Dim this1 As String = ""
Dim thisline(6000) As String
Dim i As Integer = 0
Do Until MReader.Peek = -1
this1= MReader.ReadLine
thisline(i)= this1
lstHere.Items.Add(thisline(i))
'go to the next line.
i = i + 1
Loop
End Sub
你爲什麼不使用'File.ReadAllLines( 「C:\用戶\麻雀\ testexam.txt」)'得到完整的數組只有一行? –