Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This worked ok for me--it stopped it each time the shift key was held (is that
what you wanted?): Option Explicit Declare Function GetKeyState32 Lib "user32" Alias _ "GetKeyState" (ByVal vKey As Integer) As Integer Sub testme() Dim myShape As Shape If GetKeyState32(16) < 0 Then MsgBox "not this time buddy!" Exit Sub End If Set myShape = ActiveSheet.Shapes(Application.Caller) MsgBox myShape.TopLeftCell.Address End Sub Sheldon wrote: Well, I figured out that I can use GetKeyState. All I need now is to reset the KetState. In other words, the first time the macro works correctly. But after that, the macro runs whether the shift key is pressed or not. So How do I reset? Thanks "Sheldon" wrote: In a worksheet I have a drawing object (rectangle) tied to macro. I want to macro to run ONLY if the SHIFT key is pressed and the drawing object is clicked. How can I do this? Thanks -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Event Macro running another macro inside | Excel Discussion (Misc queries) | |||
disable user running macro from Tools Macro | Excel Discussion (Misc queries) | |||
how to get onkey macro to fire while another macro is running | Excel Programming | |||
running a macro ina workbook that doesnt have that macro | Excel Programming | |||
Launch Macro in Access via Macro running in Excel??? | Excel Programming |