I have several date fields in my database table which allow NULL. I need to bind these columns to fields to my form. They DateTimePicker won't even show a blank/NULL as read from the database. It only shows the current datetime as set in the Value property of the datetimepicker object. The MaskedTextBox will show empty when it reads NULL data but it locks you in the field if you try to tab through it or clear data.
I cannot use any controls from a third party and I am not allowed to create my own controls. Is it really 2019 and Microsoft still refuses to address nullable dates? Do I have any recourse here other than using a standard, unmanaged textbox?
I'm not holding out a lot of hope based on my net searches but maybe someone can help. Thank you!