请教一下:VB2005怎么把编辑框中数据保存进文件,然后又怎么读取出来,初学,怎么有点看不太懂,注释下吧

2024-11-27 19:56:35
推荐回答(1个)
回答(1):

property Value as string
get
if File.Exists("你的文件")=False then return "" '如果文件不存在 返回空
Dim fo As New IO.StreamReader("你的文件")
Dim text As String = fo.ReadToEnd
fo.Close()

return text
end get
set (value as string)
Dim fw As New IO.FileStream("你的文件", FileMode.OpenOrCreate, FileAccess.Write)
Dim b() As Byte = Encoding.UTF8.GetBytes(text)
fw.Write(b, 0, b.Length)
fw.Close()
end set
end property

你只要调用一下就可以了
value=textbox1.text '就保存了
textbox1.text=value ' 读取文件了