Form.CommandEnabled 事件 (Access)

在指定的 Microsoft Office Web 组件确定是否启用指定的命令时发生。

语法

表达式CommandEnabled (命令已启用)

expression:表示 Form 对象的变量。

参数

名称 必需/可选 数据类型 说明
命令 必需 Variant 已被确认为启用的命令。
Enabled 必需 Object 将该对象的 Value 属性设置为 False 以禁用该命令。

返回值

Nothing

注解

OCCommandIdChartCommandIdEnumPivotCommandId 常量包含每个 Microsoft Office Web 组件的受支持命令列表。

示例

下面的示例演示如何捕获 CommandEnabled 事件的子程序的语法。

Private Sub Form_CommandEnabled( _ 
 ByVal Command As Variant, ByVal Enabled As Object) Dim intResponse As Integer 
 Dim strPrompt As String 
 
 strPrompt = "Disable the command?" 
 
 intResponse = MsgBox(strPrompt, vbYesNo) 
 
 If intResponse = vbYes Then 
 Enabled.Value = False 
 Else 
 Enabled.Value = True 
 End If 
End Sub

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。