1
我正在使用此代碼來檢查編輯模式下是否停用標準工具欄。使用Excel VBA通過檢查標準工具欄捕獲編輯模式
的CommandBarControl oNewMenu = Application.CommandBars( 「工作表菜單欄」)。的FindControl(1,18,1,TRUE,TRUE)
If (IsNull(oNewMenu)) Then
MsgBox "Edit mode enabled"
End If
但功能的FindControl引發錯誤。參數中是否有任何衝突?
: 反正試試這個。 MsgBox「編輯模式」&IIf(oControl.Enabled,「enabled」,「disabled」),vbInformation。 謝謝... – Srimal