I created a Search in vb.net button that allows me to display the elements of my table 'book' with as properties (code_ouvrage,id, title book, publishing house and date of edition) now I would like that when I do the search that the value of date of edition (which is of type date format 0000/00/00 is displayed in the DateTimePicker1
. I already tried this:
DateTimePicker1.Value = dtr("date").ToString
I was waiting for him to return the date value in my MySQL database that he will display in the DateTimePicker
.
I don't know if I understand the question right. But if you want to put date value to datetimepicker, you can do something like that:
I hope it was helpful.
EDITED:
As you asked me, you also need to check if the date is Nothing:
Checking if date
Is Nothing
Is equivalent to check if a Date isDate.MinValue
. The value01/01/0001 00:00:00
is the minimum value of Date.