vb6下编的文本编辑器 保存打开文件问题
做了一个文本文档的编辑和浏览器。保存类型为文本文档,但保存以后字段两边都加上了双引号
比如 我在 text 里写上 yyyy
保存后是 “yyyy”
如何去引号?
还有 打开文本文档 只能读出显示原文档的第一行
为什么?有办法吗?
指教!!!!!!!
程序代码
private sub save_click()'保存按钮是 save
dim y as string
y=text1.text
on error resume next
commondialog1.showsave
open commondialog1.filename for output as #1
write #1,y
close
end sub
private sub open_click()'打开按钮是 open
dim y as string
on error resume next
commondialog1.showopen
open commondialog1.filename for input as #1
input #1,y
close
text1.text=y
end sub