允许在 win7 或 vista 上使用 vb 或 c# 保存访问数据库上的数据吗?
我想安装我的应用程序或(仅访问数据库)到 AppData 文件夹以启用对其的写入。 那么,我该如何在安装项目中做到这一点。 是否只有参数或者我应该编写自定义操作。 谢谢。
I want to install my app or (just access db)to AppData folder to enable write for it.
so, how can I do that in setup project.
Is there just parameter or should I wirte custom action.
Thx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
谢谢大家,在这里您可以找到一个漂亮的答案:
我是这样解决的。我将数据库文件 (.sdf) 保存在与安装应用程序的文件夹相同的文件夹中(应用程序文件夹)。在主项目属性窗口的安全选项卡上,我检查了“启用 ClickOnce 安全设置”并选择“这是一个完全信任的应用程序”,重建并运行安装程序。之后就没有安全问题了
我
在此链接中使用 Visual Studio 2008 和 Windows Vista:
VS2008 安装项目:共享(由所有用户)应用程序数据文件?
Thx Guys, here you can find a beauti answer:
I solved it this way. I kept the database file (.sdf) in the same folder as where the application is installed (Application Folder). On the security tab in the properties window for the main project, i checked the "Enable ClickOnce Security Settings" and selected "This is a full trust application", rebuilt and ran the setup. After that no security problem
I am using Visual Studio 2008 and Windows Vista
in this link:
VS2008 Setup Project: Shared (By All Users) Application Data Files?