Hello. I have a masked textbox for a date (the mask is: 00/00/0000). I also have a buttn next to the textbox that when clicked will open up a monthcalendar. I am stuck as to how to return the value selected from the month calendar to the masked textbox.
Here is what I have so far:
I'm not too sure as to the properties of the month calendar.
Any help will be appreciated.
Thanks in advance.
Here is what I have so far:
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[COLOR=green]'show the calendar[/color green]
MonthCalendar1.Visible = True
End Sub
I'm not too sure as to the properties of the month calendar.
Any help will be appreciated.
Thanks in advance.