Visual Basic在程序信息存储中的应用

发布于 2024-12-08 21:42:05 字数 204 浏览 0 评论 0原文

我正在制作一个安装程序,需要将信息存储在 exe 本身内。

我无法使用 my.settings,因为它存储在应用程序外部,如果它被更改并且 exe 被移动到另一台计算机,它将重置为默认值。

而且我无法使用资源,因为在构建应用程序后无法添加/编辑资源。

即使应用程序移动到另一个位置,有什么方法可以存储和更改信息吗?

感谢您的帮助,

I'm making an installer that needs to have information stored inside the exe itself.

I cannot use my.settings because it is stored outside the application and if it is changed and the exe is moved to another computer it will reset to default.

And I cannot use resources since I cannot add/edit resources after the application is build.

Is there any way I can store and change info even if the application is moved to another location?

Thanks for any help,

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

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

发布评论

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

评论(1

独孤求败 2024-12-15 21:42:06

我解决了。

这段代码允许我将信息添加到 exe 文件的末尾,而不会损坏它。

 Dim encoding As New System.Text.ASCIIEncoding()
        Dim pid As Byte() = encoding.GetBytes(vbnewline & "Text to add")
        My.Computer.FileSystem.WriteAllBytes("file.exe", pid, True)

然后用程序中的读取行代码读取最后一行。

I solved it.

This code allowed me to add information to the end of the exe file without corrupting it.

 Dim encoding As New System.Text.ASCIIEncoding()
        Dim pid As Byte() = encoding.GetBytes(vbnewline & "Text to add")
        My.Computer.FileSystem.WriteAllBytes("file.exe", pid, True)

and then just read the last line with read line code within the program.

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