How do I pass an empty value, that is a Date type variant, to a SQL statement?

The user adds dates to textboxes, which are then validated, and if then ok, added to an update statement (strSQL)

The dates don't have to be filled in and I am getting the error Data Type Mismatch because I am passing "" for the date.

How would I pass an empty date to the SQL?

Thanks