Video Tutorial

Aprenderás a :
- Trabajar con el control calendario .

Aprenderemos a colocar los valores de un calendario a nuestra caja de texto.

Codigo Fuente
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
'DIAS : MonthCalendar1.SelectionStart.Day
'MESES : MonthCalendar1.SelectionStart.month
'AÑOS : MonthCalendar1.SelectionStart.Year
'12/02/2012
TextBox1.Text = MonthCalendar1.SelectionStart.Day & "/" & MonthCalendar1.SelectionStart.Month & "/" & MonthCalendar1.SelectionStart.Year
End Sub