Right-Click event of Shape

tiredofit

Well-known Member
Joined
Apr 11, 2013
Messages
1,832
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
This code captures the action when the user checks the checkbox on Sheet1:

Code:
Option Explicit



' Worksheet module


Dim CheckBoxesColl As Collection


Private Sub Worksheet_Activate()


Dim CheckBoxHandler As ClsCheckBoxEvent

Dim MyShp As Shape


Set CheckBoxesColl = New Collection


For Each MyShp In Me.Shapes

    If MyShp.Type = msoOLEControlObject Then
    
        If TypeOf MyShp.OLEFormat.Object.Object Is MSForms.CheckBox Then

            Set CheckBoxHandler = New ClsCheckBoxEvent

            Set CheckBoxHandler.CheckGroup = MyShp.OLEFormat.Object.Object

            CheckBoxesColl.Add CheckBoxHandler

       End If

    End If

Next MyShp

End Sub


This is in ClsCheckBoxEvent:

Code:
Option Explicit


Public WithEvents CheckGroup As MSForms.CheckBox


Private Sub CheckGroup_Click()


    ' Code to act when the checkboxes are checked / unchecked


End Sub

How can I adapt it to capture the right-clicking of a shape?

Thanks
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Re: Right-Ccick event of Shape

You can't do it in the Click event, you need to use the MouseDown or MouseUp events and check the Button parameter.
 
Upvote 0

Forum statistics

Threads
1,214,601
Messages
6,120,467
Members
448,965
Latest member
grijken

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