I have a datetimepicker control where I want to show both the date and time but so far have not been able to do so.

I have the properties format set to custom and then through code I am trying to do this:
VB Code:
  1. ' Format DateTime
  2.         dtpShow.Value = CDate(dtShowDateTime.ToString("u"))
  3.         dtpStart.Value = CDate(dtStartDateTime.ToString("u"))
  4.         dtpEnd.Value = CDate(dtStopDateTime.ToString("u"))

At run time the control is only showing Long or Short depending on the properties. I want to show it like this: 2007-9-18 00:00:00