Good afternoon,
I'm using an ActiveXControl to choose a date on calendar. I would like to call this calendar by double cliking on a cell.
I'm able to do the action by clicking on a cell, but I can't find a way to show my calendar.
My code : The problem is located Where the * is
Private Sub Worksheet_BeforeDoubleClick(ByVal target As Range, Cancel As Boolean)
Dim Date_Debut, Date_Fin As String
Date_Debut = "$C$35"
Date_Fin = "$C$36"
Char_cellule_click = target.Address
Select Case Char_cellule_click
Case Date_Debut
Range("$B$35").Select
* Call Externe_Picker_Start_CallbackKeyDown
Case Date_Fin
Range("$B$36").Select
Form2.Show
End Select
End Sub
The only thing I can do so far is to show the activeXControl by doing :
Case Date_Debut
Range("$B$35").Select
Externe_Picker_Start.Visible = True
What I would like is an action that simulates the click on the down Arrow of my activeXcontrol to show the calendar. Is it possible?
I hope I'm being clear. Let me know if not.
Thankis in advance for your help.
Best regards,
Jean