Hello,
In the form1 load event I am running this code
Dim NewCalendar As New MonthCalendar
NewCalendar.Name = "DateSelecter"
NewCalendar.Size = New Size(80, 80)
NewCalendar.Location = New Point(100, 100)
NewCalendar.Visible = True
AddHandler NewCalendar.DateSelected, AddressOf DateSelecter_DateSelected
Me.Controls.Add(NewCalendar)
However I can not work out how to get the value from the month calendar, so my question is how can I get the value of the month calendar in the DateSelecter_DateSelected sub.
Kindest regards,
Minko