Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

like image 278
user1083597 Avatar asked Dec 06 '11 22:12

user1083597


3 Answers

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.

like image 100
Chris Avatar answered Oct 15 '22 20:10

Chris


You need to set the value in the Form_Load event:

Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles Me.Load
    DataFrom.Value = DateTime.Now
End Sub
like image 29
competent_tech Avatar answered Oct 15 '22 20:10

competent_tech


You want to put that code in Form_Load:

Private Sub Form_Load(sender As Object, e As EventArgs) Handles Me.Load
    DataFrom.Value = DateTime.Now
End Sub
like image 22
Hand-E-Food Avatar answered Oct 15 '22 20:10

Hand-E-Food