Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在桌面上打开了一个 Word 文档。我希望能够获取有关 Word 文档状态的信息,例如文档 url 或内容。实现它的手段是什么?
目前,我正在使用 JScript。但是,下一行只给出了一个新的 Word 实例,而不是当前打开的 Word 文档。
var word = WScript.CreateObject("Word.Application");
任何建议将不胜感激。
要使用的功能是GetObject(). 它将返回一个指向打开的第一个 Word 实例的指针。
GetObject()