vb.net - how to set today as a default date for time picker?

user1083597 picture user1083597 · Dec 6, 2011 · Viewed 40.5k times · Source

As the properties Value of the date/time picker does not allow to enter the DateTime.Now default value, I have tried to set it in the code:

Private Sub DataFrom_ValueChanged(sender As System.Object, e As System.EventArgs) Handles DataForm.ValueChanged

     DataFrom.Value = DateTime.Now

End Sub

It indeed shows the current date on opening the form with the date/time picker. However one cannot set any other date from the drop down calendar (one can choose a date, what means that the calendar is dropped down allowing to point a date, but after clicking the choice the date/time picker value returns to the current date).

Thank you in advance for some indications. Marek

Answer

Chris picture Chris · Dec 6, 2011

I believe you are setting it in the wrong place. If you are using the "Value Changed" event to set it, it will always change back because you're overriding the value that was just selected...

You should rather set it in Form Load method where it will default once.