Hi, I have a datetime column in my SQL Server DB table an have some records with a value of NULL. I am trying to load an object with date values. Because the date is null my variable has a value of "12:00:00". How can I ensure that my Date variable is "" instead of the "12:00:00" which causes a SqlDateTime overflow exception. My variable is set up as a Nullable(Of Date) but I have just been having so many problems with Null dates in VB.NET. What is the best procedure for working with null dates?