启动 Word 并监视文档是否关闭
我们的学校项目需要一种启动单词实例并跟踪文档是否关闭的方法。 word 中的 COM api 没有这方面的事件,还有其他方法可以做到这一点吗?
目前我们正在使用 Word 中的 COM api,但其他一切都很好。我们正在使用 C# 进行编程。
we need for our school project a way to start a word instance and track if the document was closed. The COM api from word doens't have a event for this, are there any other ways to do this?
Currently we're using the COM api from word, but everything else would be fine. We're programing in C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 winword 进程检查在特定文件上运行的进程是否退出。
如果您不知道新启动实例的进程,请使用此函数或简单地挂钩进程的退出事件。
获取所有文字进程
使用 Process.MainWindowTitle 识别特定文件的进程
挂钩进程的退出事件 Process.Exited
Use the winword process to check if process running on particual file is exited or not.
If you dont know the process of newly started instance use this or simply hook exited event of process.
Get all word processes
Identify the process of particular file using
Process.MainWindowTitle
Hook exited event of the process
Process.Exited
如果您使用 Microsoft.Office.Interop.Word 库,您也可以订阅一个事件:
...
编辑:
处理文件锁定 ==>看看这篇文章 。正如您所看到的,在 DocumentBeforeClose 中完成了一些操作:
处理完这些事情后,您就可以做您的事情了。锁应该被释放。
If your using the Microsoft.Office.Interop.Word library there is an event you can subscribe too:
...
Edit:
To take care of the file lock ==> take a look at this post. As you can see there are a few things done in the DocumentBeforeClose:
After these things are taken care of, you can do your stuff. The lock should be released.