活动 - 文件编辑

时间:2008-11-06 16:07:12

标签: vba events ms-word word-vba

是否有编辑文档的事件? 如果没有,有谁知道我在哪里可以找到可用的VBA事件列表?

4 个答案:

答案 0 :(得分:1)

以下是文档对象的事件:

http://msdn.microsoft.com/en-us/library/aa140279(office.10).aspx

<强>事件

DocumentBeforeClose : Immediately before any open document closes. 
DocumentBeforePrint : Before any open document is printed. 
DocumentBeforeSave : Before any open document is saved. 
DocumentChange : A new document is created, when an existing document is opened, or when another document is made the active document. 
DocumentOpen : A document is opened. 
EPostageInsert : A user inserts electronic postage into a document. 
EPostagePropertyDialog : A user clicks the E-postage Properties (Labels and Envelopes dialog box) button or Print Electronic Postage toolbar button. This event allows a third-party software application to intercept and show their properties dialog box. 
MailMergeAfterMerge : After all records in a mail merge have merged successfully. 
MailMergeAfterRecordMerge : After each record in the data source successfully merges in a mail merge. 
MailMergeBeforeMerge : A merge is executed before any records merge. 
MailMergeBeforeRecordMerge : As a merge is executed for the individual records in a merge. 
MailMergeDataSourceLoad : The data source is loaded for a mail merge. 
MailMergeDataSourceValidate : A user performs address verification by clicking Validate in the Mail Merge Recipients dialog box. 
MailMergeWizardSendToCustom : The custom button is clicked on step six of the Mail Merge Wizard. 
MailMergeWizardStateChange : A user changes from a specified step to a specified step in the Mail Merge Wizard. 
NewDocument : A new document is created. 
Quit : The user quits Word. 
WindowActivate : Any document window is activated. 
WindowBeforeDoubleClick : The editing area of a document window is double-clicked, before the default double-click action. 
WindowBeforeRightClick : The editing area of a document window is right-clicked, before the default right-click action. 
WindowDeactivate : Any document window is deactivated. 
WindowSelectionChange : The selection changes in the active document window. 
WindowSize : The application window is resized or moved. 

还有自动宏:

AutoNew,AutoOpen,AutoExec,AutoExit

答案 1 :(得分:1)

该命令是WindowSelectionChange

答案 2 :(得分:0)

要拦截任何Word命令,您可以:

1

按Alt + F8打开“宏”对话框,其中显示“Macros in”, 选择“Word命令”。

2

查找并选择您要拦截的命令之一 - 例如,拦截您需要查找FilePrint和FilePrintDefault的打印命令。要拦截Save命令,您需要找到FileSave,FileSaveAs和FileSaveAll

3

如果显示“Macros in”,请选择要存储宏的模板,然后单击“创建”。

4

执行命令所需的代码将为您编写;只需添加自己的代码。

答案 3 :(得分:0)

您可以尝试使用autohotkey来收听按键事件,查看我的代码:

Capturing keydown event of MS Word

相关问题