I am looking for the "right" way to handle inserting and presenting null
date values.
Public Const c_NullDate As Date = #12:00:00 AM#
If I set the value of a date variable in an SQL Server insert statement to
c_NullDate, the insert statement works. When I re-read the row and display
the inserted date value in a text box, the string "1/1/1900" is displayed.
If one wanted the textbox to display an empty string, how should either the
insert to the db be handled, or should code to show a blank string in the
text box be added?
Thanks
Dean Slindee
date values.
Public Const c_NullDate As Date = #12:00:00 AM#
If I set the value of a date variable in an SQL Server insert statement to
c_NullDate, the insert statement works. When I re-read the row and display
the inserted date value in a text box, the string "1/1/1900" is displayed.
If one wanted the textbox to display an empty string, how should either the
insert to the db be handled, or should code to show a blank string in the
text box be added?
Thanks
Dean Slindee
Comment