Code below show date in format 02/15/2012. how to change it to 15/02/2012
Private Sub Calendar_DateChanged(ByVal sender As System.Object, _
ByVal e As System.Windows.Forms.DateRangeEventArgs) _
Handles Calendar.DateChanged
TxtStock_Date.Text = Calendar.SelectionStart.ToShortDateString
Calendar.Visible = False
End Sub
This should do it: