Private Sub Cell_LongClick
    Dim rc As RowCol
    Dim L As Label
    L = Sender
    rc = L.Tag
    SelectRow(rc)
    If SubExists(cCallBack, cEventName & "_CellLongClick") Then
        If Starter.OneClick Then
            CallSub3(cCallBack, cEventName & "_CellLongClick", rc.Col, rc.Row)
        Else
            CallSub3(cCallBack, cEventName & "_CellClick", rc.Col, rc.Row)
        End If
'        CallSub3(cCallBack, cEventName & "_CellLongClick", rc.Col, rc.Row)
    End If
End Sub
Private Sub Cell_Click
    Dim rc As RowCol
    Dim L As Label
    L = Sender
    rc = L.Tag
    SelectRow(rc)
    If SubExists(cCallBack, cEventName & "_CellClick") Then
        If Starter.OneClick Then
            CallSub3(cCallBack, cEventName & "_CellClick", rc.Col, rc.Row)
        Else
            CallSub3(cCallBack, cEventName & "_CellLongClick", rc.Col, rc.Row)
        End If
'        CallSub3(cCallBack, cEventName & "_CellClick", rc.Col, rc.Row)
    End If
End Sub