Hey,

So I have a database that has null date values in it. When I call the columns from the database with the null datetime values and display it in the datetimepicker text box using a dataset, theres always values in the datetimepicker text box. It sets everything that was in the database with null values to the current date. This is what i have..

Code:

DateOPStartedRevisionDateTimePicker.Text = ds.Tables(0).Rows(0).Item(13).ToString
I just cant figure out a way to get the datetimepicker text box to display nothing if the values are null in the database.

any help would be great!
thanks!