Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello!
I posted this question a week ago but I never received the confirmation email and I can't find it when I search the community. Basically I have a problem with a doubleclick event. I run the following macro (by doubleclicking) to call one of two macros. Private Sub Worksheet_BeforeDoubleClick(ByVal _ Target As Range, Cancel As Boolean) Dim dcCell As Range If Target.Value 0 Then If Target.Column = 1 Then Call POtoContract(dcCell:=Target) Cancel = True Else If Target.Column = 4 Then Cancel = True Call copytableline(cyCell:=Target) End If End If End If End Sub If macro POtoContract is called then the user is prompted to enter the a name and if he enters a wrong name then the sub exits (which is what it should do). However, trying to doubleclick again to call the macro a second time now enters editing mode instead of calling the macro again. Why? If On the other hand the user does not enter a wrong name then POtoContract runs till the end and double clicking still works after that. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to use selectionchange instead of doubleclick event? | Excel Discussion (Misc queries) | |||
Doubleclick event programming | Excel Programming | |||
Help with "Doubleclick event" | Excel Programming | |||
Multi select with doubleclick event | Excel Programming | |||
Date Doubleclick Event | Excel Programming |