Solo pon en tu codebehind algo como ésto:
Cita: Private Sub Calendar1_SelectionChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Calendar1.SelectionChanged
TextBox1.Text = Calendar1.SelectedDate.ToString("dd/MM/yyyy")
End Sub
Con ello, lo que selecciones en tu calendar se lo pasarás a tu Textbox
Salu2