Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Return value of month calendar to a masked textbox 1

Status
Not open for further replies.

bigz60

Technical User
Apr 18, 2007
40
US
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:
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.
 
Try:

Code:
		MaskedTextBox1.Text = MonthCalendar1.SelectionStart.ToString("dd/MM/yyyy")


Hope this helps.



[vampire][bat]
 
.. of course if you are on the other side of the "pond" you would probably want:

Code:
		MaskedTextBox1.Text = MonthCalendar1.SelectionStart.ToString("MM/dd/yyyy")


Hope this helps.


[vampire][bat]
 
thank you so much. That worked out great.
I used your second post.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top