Just a pointer,
I had the same problem with the Time and Date picker, but had success by taking the value of the Time and Date picker and getting just the date using the date value function, like:
'start code
Dim dtYourDate as Date
dtYourDate = DateValue(Me.DatePickerOcx.Value)
This will return 11/5/2002 instead of 11/5/2002 7:48:59 AM
Hope this helps