DateTimePicker Question

Cricket

Active member
Joined
Jan 6, 2005
Messages
28
Location
Hamilton, ON, Canada
Programming Experience
5-10
I'm trying to make the DateTimePicker control display a blank (""). However it thinks it always needs to display a date.

Anyone know how to do this?
 
Cricket said:
I'm trying to make the DateTimePicker control display ablank (""). However it thinks it always needs to display a date.

Anyone know how to do this?

VB.NET:
Me.DateTimePicker1.Format = DateTimePickerFormat.Custom
		Me.DateTimePicker1.CustomFormat = "	   "
 
Back
Top