如何强制使用我的程序打开某种类型的任何文件?
我有一个构建程序,可以打开 *.sdf 文件并显示所有表格和内容。数据。
如何强制我的计算机中的任何 *.sdf 文件都将用我的程序打开?
提前致谢
i have build program that can open *.sdf files and show all the table & the data.
how to force that any *.sdf file in my computer will open with my program ?
thank's in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你不能。您可以将您的程序与特定的文件扩展名相关联,但不能强制用户使用您的程序打开文件。甚至注册条目也很容易更改(在上下文菜单中打开)。
You can not. You can associate your program with a specific file extension, but you can not FORCE the user to use your program to open a file. Even registration entries are easy to change (open with in the context menu).
如果您的程序有部署项目,则可以使用文件类型编辑器轻松完成:
按钮
目标计算机”
新文件类型指定一个或多个
要关联的文件扩展名
与你的程序。
您的“主要输出”
应用。
If you have a Deployment project for your program it is easy to do with the File Types Editor:
button
Target Machine"
new File Type to specify one or more
file extensions to be associated
with your program.
"Primary output" from your
application.
您需要将扩展与您的程序关联:注册扩展
You need to associate extension with your program: Registering the Extension