Office 2010 保存对话框未通过远程桌面显示在计算机上
我正在使用远程桌面远程访问服务器,并运行将信息保存到 Excel 的 C# .Net 应用程序。
我正在使用 Excel 的内置互操作对话框在服务器上打开一个 saveas 对话框:
dialog = dialogs[InteropExcel.XlBuiltInDialog.xlDialogSaveAs];
dialog.Show(filename);
该对话框不显示,它只是暂停在那里,就好像在等待对话框关闭一样。我在其他使用 Office 2003、2007 和 2010 的计算机上进行了测试,但都没有出现任何问题。
服务器使用Server 2007 SP2。
I am using remote deskop to remote into a server, and run a C# .Net application that saves information to Excel.
I am opening a saveas dialog on a server using Excel's built-in interop diaglog:
dialog = dialogs[InteropExcel.XlBuiltInDialog.xlDialogSaveAs];
dialog.Show(filename);
The Dialog does not show, and it just pauses there, as if waiting for the dialog to be closed. I tested it on other computers using Office 2003, 2007 and 2010, but none of them have any issues.
The server uses Server 2007 SP2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题出在 Excel 中的一个加载项上。当您打开“打开”和“另存为”对话框时,它会导致该对话框崩溃。我在此页面上找到了解决方案:
http://social.msdn.microsoft.com/Forums/en-AU/vsto/thread/83382a34-5087-40cf-b12a-1121303627c0
The problem was with an add-on in Excel. It causes the the "Open" and "Save As" dialog to crash when you open it. I found the solution on this page:
http://social.msdn.microsoft.com/Forums/en-AU/vsto/thread/83382a34-5087-40cf-b12a-1121303627c0