我的组合框中有一个项目列表。我需要将所选项目仅保存到文本文件中。我的想法是这样的。
Dim stream As New System.IO.FileStream("C:\CONFIG\PA.txt", IO.FileMode.Append, IO.FileAccess.Write)
Dim write As New System.IO.StreamWriter(stream)
Dim PA As String = (ComboBox1.SelectedItem)
write.WriteLine(PA)
但我无法找到正确的方法。有人可以帮忙吗? 提前谢谢。
答案 0 :(得分:0)
在继续之前检查所选项目会很好。
然后这样写:
If Not ComboBox1.SelectedItem Is Nothing Then
File.WriteAllText("c:\config\pa.txt", ComboBox1.Text)
End If