ousoonerjoe
Programmer
Using VB.Net 2010.
After spending some time with the MonthCalendar Control, I realized the DoubleClick Event does not exist. I found where the MouseDown and MouseUp events contain e.Clicks which supposedly tell you the number of times a day was clicked. The idea was to double click a day in the calendar to populate a new row in the DataGridView when adding to the list of Non-Productive Holidays.
The core question:Can a DoubleClick event be added to the MonthCalendar control? I think I found code to do it, but not sure how to "activate" it (Shown here):
The following is the e.Clicks methodology that could not return more than 1 no matter how fast i clicked:
As always, any suggestions or advise is welcome.
--------------------------------------------------
Stubbornness is a virtue -- if you are right. --Chuck Noll
--------------------------------------------------
After spending some time with the MonthCalendar Control, I realized the DoubleClick Event does not exist. I found where the MouseDown and MouseUp events contain e.Clicks which supposedly tell you the number of times a day was clicked. The idea was to double click a day in the calendar to populate a new row in the DataGridView when adding to the list of Non-Productive Holidays.
The core question:Can a DoubleClick event be added to the MonthCalendar control? I think I found code to do it, but not sure how to "activate" it (Shown here):
Code:
Public Class ExtendedMonthCalendar
Inherits MonthCalendar
Private m_LastClickPosition As Point
Private m_LastClickTime As Long
Private m_LastClickRaisedDoubleClick As Boolean
Public Shadows Event DoubleClick(ByVal sender As Object, ByVal e As EventArgs)
Protected Overrides Sub OnDoubleClick(ByVal e As EventArgs)
RaiseEvent DoubleClick(Me, e)
End Sub
Protected Overrides Sub OnMouseDown(ByVal e As MouseEventArgs)
If e.Button = MouseButtons.Left Then
If Not m_LastClickRaisedDoubleClick AndAlso Now.Ticks - m_LastClickTime <= SystemInformation.DoubleClickTime * 10000 AndAlso IsInDoubleClickArea(m_LastClickPosition, Cursor.Position) Then
OnDoubleClick(EventArgs.Empty)
m_LastClickRaisedDoubleClick = True
Else
m_LastClickRaisedDoubleClick = False
End If
m_LastClickPosition = Cursor.Position
m_LastClickTime = Now.Ticks
End If
MyBase.OnMouseDown(e)
End Sub
Private Function IsInDoubleClickArea(ByVal Point1 As Point, ByVal Point2 As Point) As Boolean
Return Math.Abs(Point1.X - Point2.X) <= SystemInformation.DoubleClickSize.Width AndAlso Math.Abs(Point1.Y - Point2.Y) <= SystemInformation.DoubleClickSize.Height
End Function
End Class
Code:
Private Sub calMain_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles calMain.MouseDown
If e.Clicks = 2 And e.Button = Windows.Forms.MouseButtons.Left Then
dgHoliday_NewRowNeeded(Nothing, Nothing)
dgHoliday.Item("DateOff", dgHoliday.NewRowIndex).Value = calMain.SelectionRange.Start
End If
End Sub
--------------------------------------------------
Stubbornness is a virtue -- if you are right. --Chuck Noll
--------------------------------------------------