tiredofit
Well-known Member
- Joined
- Apr 11, 2013
- Messages
- 1,924
- Office Version
- 365
- 2019
- Platform
- Windows
The BeforeDoubleClick event syntax is as follows:
I assume the Cancel argument is passed ByRef, so there's no need to write:
Thanks
Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
End Sub
I assume the Cancel argument is passed ByRef, so there's no need to write:
Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, ByRef Cancel As Boolean)
End Sub
Thanks
Last edited: