我正在尝试将文本文件中的内容转换为Listbox
,但我无法让它工作。它可以正常使用文本框。
Private Sub btnLoad_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnLoad.Click
Dim filename As String
Dim recipereader As StreamReader
ofdLoad.ShowDialog()
filename = ofdLoad.FileName
If filename <> "" Then
recipereader = File.OpenText(filename)
ListBox1.Text = recipereader.ReadToEnd
recipereader.Close()
End If
End Sub
End Class
我错过了什么?
答案 0 :(得分:0)
文字指的是完全不同的内容,但要将项目添加到您必须使用的列表框中:Listbox.Items.Add(yourItems)
。
将ListBox1.Text = recipereader.ReadToEnd
更改为ListBox1.Items.Add(recipereader.ReadToEnd)
。请记住,这会将所有文本添加到一个ListBox项目中。