J
Jacob
For some reason, the MonthCalendar class (control) does not show the
MouseDoubleClick method (event) in the VS IDE. I added an event
handler but can't get the succker to fire the event it points to.
Any idea what I'm doing wrong? Here is the code I added...
Public Sub New()
' This call is required by the Windows Form Designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
AddHandler MonthCalendar1.MouseDoubleClick, AddressOf MDC_event
End Sub
Private Sub MDC_event(ByVal sender As Object, ByVal e As
System.Windows.Forms.MouseEventArgs)
' Do something
End Sub
Thanks in advance,
Jacob
MouseDoubleClick method (event) in the VS IDE. I added an event
handler but can't get the succker to fire the event it points to.
Any idea what I'm doing wrong? Here is the code I added...
Public Sub New()
' This call is required by the Windows Form Designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
AddHandler MonthCalendar1.MouseDoubleClick, AddressOf MDC_event
End Sub
Private Sub MDC_event(ByVal sender As Object, ByVal e As
System.Windows.Forms.MouseEventArgs)
' Do something
End Sub
Thanks in advance,
Jacob