hola a todos, estoy tratando de poner un DateTimePicker en fecha corta, pero en dd/MM/yyyy, pero hasta ahora solo me muestra MM/dd/yyyy.
he realizado lo siguiente, y no me funciona:
'Rep.FechaIni = Me.DateTimePicker1.Value
'Rep.FechaIni = Me.DateTimePicker1.Value.Date.Day.ToString & "/" & Me.DateTimePicker1.Value.Date.Month.ToString & "/" & Me.DateTimePicker1.Value.Date.Year.ToString
'Rep.FechaIni = Format(CDate(Me.DateTimePicker1.Value), "dd/MM/yyyy")
Rep.FechaIni = Format((Me.DateTimePicker1.Value), "dd/MM/yyyy")
Rep.FechaFin = Me.DateTimePicker2.Value.Day & "/" & Me.DateTimePicker2.Value.Month & "/" & Me.DateTimePicker2.Value.Year
'Rep.FechaFin = Me.DateTimePicker2.Value.ToString("dd/MM/yyyy")
como vera, lo he tratado, pero ninguno de ellos me compone la fecha como quiero.
gracias por la colaboracion