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 文档右上角的“X”时,提示“您要保存更改吗?” 没有出现并且文档没有被保存。我找到了许多Excel的解决方案,但我没有成功尝试将它们应用于 Word...
提前感谢您的帮助!
编辑:我希望这仅适用于一个文件。.docm 设置为 ReadOnly(允许 Kill-ing 本身);它有 2 个按钮,1 个用于保存为 .pdf 表单以供保留,1 个用于保存为修订而不是完整的表单。当有人使用“X”强制保存的修订跟踪时,我想禁用提示。
把它放在你的ThisDocument对象中,MicrosoftWordObjects用于有问题的文件。
ThisDocument
MicrosoftWordObjects
确保它没有进入该Normal部分
Normal
Private Sub Document_Close() Me.Saved = True End Sub
将其放在该Normal部分将关闭您在 Word 实例上打开的所有文档的“另存为”功能。