“打开方式”中缺少数据集编辑器VS2005中的对话框
我使用的是 Visual Studio 2005。我通常使用数据集编辑器来设计数据集。但是,此选项在“打开方式”对话框中不再可用。 Visual Studio 现在默认使用 XML 架构编辑器设计数据集。
在设计数据集时,如何将数据集编辑器恢复为可用选项?
I'm using Visual Studio 2005. I normally use the DataSet Editor to design datasets. However, this option is no longer available in the Open With dialog. Visual Studio now defaults to designing datasets with the XML Schema Editor.
How can I get the DataSet Editor restored as an available option when designing datasets?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
恢复数据集编辑器的最简单方法是启动 Visual Studio 命令提示符并运行: devenv /Setup
这将导致 Visual Studio 合并用于填充“打开方式...”菜单选项的资源元数据,除其他事项外。
The easiest way to get the DataSet Editor back is to launch the Visual Studio Command Prompt and run: devenv /Setup
This will cause Visual Studio to merge the resource meta data that is used to populate the "Open With..." menu option, among other things.
是的,很好,这就是有效的,我第一次尝试了这个我记得要重置的命令:
devenv.exe/resetsettings
它打开了 VS2005 配置了它(看起来像),但数据集的设计器仍然丢失。
因此,不要使用 devenv/Setup 命令进行重置,因为它解决了我的问题。
问候,
法赫德.
Yes nice , this is the thing that worked , I first tried this command that I rememebred to reset :
devenv.exe/resetsettings
It opened VS2005 configured it (looked like) but then the desginser for the dataset were still missing .
So instead of resetting use the devenv/Setup command , as it resolved my problem .
Regards,
Fahad.