防止“公式已重新计算,保存”对话?
如何防止退出应用程序时 Excel 互操作启动的“公式已重新计算,保存”对话框?
xlApp.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject(xlApp);
How can I prevent the "Formulas have been recalculated, save" dialog that is launched by Excel interop when quitting the app?
xlApp.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject(xlApp);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在尝试关闭工作簿之前,请尝试将 Workbook.Saved 属性设置为 true。
Try setting the Workbook.Saved property to true before attempting to close the workbook.