我正在使用Visual Basic 2010,我需要使用txt文件填充组合框。
我正在尝试使用Streamreader,但我无法理解。我该怎么做?
答案 0 :(得分:3)
试试这个:
Private Sub FillComboFromFile(ByVal path As String)
Try
If IO.File.Exists(path) Then
Using sr As New IO.StreamReader(path)
While Not sr.EndOfStream
ComboBox1.Items.Add(sr.ReadLine)
End While
End Using
Else
MsgBox("Oooops, File not found !!!")
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
答案 1 :(得分:0)
或者这个:
ComboBox1.Items.AddRange(IO.File.ReadAllLines(path))