Disabling CommandBar Controls in Excel 2016 for Mac

briano216

New Member
Joined
Jun 4, 2011
Messages
4
For several years I have used the following code to disable/enable commandbar controls, but since updating to Excel 2016 for Mac it no longer works:
Code:
' Controls the enabling/disabling of all controls with the specified Id.
Private Sub EnableControl(pintCtrlId As Integer, pbooEnable As Boolean)
        Dim pbarCmdBar As CommandBar
        Dim pctlCmdBarCtrl As CommandBarControl

        ' Error handler needed.
        On Error Resume Next
        ' Finds every command bar control with the specified Id and enables/disables it according to the setting of pbooEnabled.
        For Each pbarCmdBar In Application.CommandBars
                Set pctlCmdBarCtrl = pbarCmdBar.FindControl(Id:=pintCtrlId, recursive:=True)
                If Not pctlCmdBarCtrl Is Nothing Then
                        pctlCmdBarCtrl.Enabled = pbooEnable
                End If
        Next pbarCmdBar
        On Error GoTo 0
        ' Destroys object reference.
        Set pctlCmdBarCtrl = Nothing

End Sub


The call to above procedure is:
Code:
EnableControl mconCtrlID_PasteSpecial, False


Does anyone know why this no longer works?
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.

Forum statistics

Threads
1,215,343
Messages
6,124,404
Members
449,156
Latest member
LSchleppi

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top