I am working on a name record application and the information is stored in a SQLite database. All columns in the database are TEXT types, except for the date of birth column
I discovered why the DateTime.MinValue
was displaying!
This line in the cell formatting section caused the MinValue of "01/01/0001" to display:
dateOfBirth.DefaultCellStyle.Format = "MM/dd/yyyy";
Without this line, the Date of Birth field in my datagridview
is left blank.
Barbaros Alp is still correct about what I was trying to do at the time. Thanks everyone!