Visual Basic在程序信息存储中的应用
我正在制作一个安装程序,需要将信息存储在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我解决了。
这段代码允许我将信息添加到 exe 文件的末尾,而不会损坏它。
然后用程序中的读取行代码读取最后一行。
I solved it.
This code allowed me to add information to the end of the exe file without corrupting it.
and then just read the last line with read line code within the program.