如何在 VB 中将文本字段内容保存到文件

发布于 2024-07-26 20:57:20 字数 340 浏览 2 评论 0原文

我想知道如何使用通用对话框将文本字段的内容保存到文件中,例如.txt,仅中的命令对话框Visual Basic 6,我只需要使用一个通用对话框,因为我试图在 eVB 中执行相同的应用程序,而 eVB 不支持此方法:

   Dim objFSO As New Scripting.FileSystemObject
   Dim objStream As Scripting.TextStream

请帮助我,我非常需要这个! 谢谢。

I'm trying to know how to save a content of a TextField to a File, like a .txt, using a Common Dialog, only a command dialog in Visual Basic 6, i need this using a only a common dialog, because i'm trying to do the same aplication in eVB, and eVB does not support this methods:

   Dim objFSO As New Scripting.FileSystemObject
   Dim objStream As Scripting.TextStream

Please help me, i'm needing this so much! Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深爱成瘾 2024-08-02 20:57:20
Dim fileHandle As File 
Set fileHandle = CreateObject("FILECTL.File")
fileHandle.Open "filename.txt", 2 
fileHandle.LinePrint "some text"
fileHandle.Close
Set fileHandle = Nothing
Dim fileHandle As File 
Set fileHandle = CreateObject("FILECTL.File")
fileHandle.Open "filename.txt", 2 
fileHandle.LinePrint "some text"
fileHandle.Close
Set fileHandle = Nothing
酒浓于脸红 2024-08-02 20:57:20

我不熟悉 eVB,但它是否支持像这样的遗留样式文件操作:

Open "filename.txt" for output as #1
Print #1, yourtextfield.text
Close #1

I am not familiar with eVB, but does it support legacy style file operations like this:

Open "filename.txt" for output as #1
Print #1, yourtextfield.text
Close #1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文