VB.NET – Date Time Picker – How Can I Choose BOTH A Date And A Time?
Code July 8th, 2009 by Shai Perednik
The dateTimePicker can indeed do time. Hence the name
Just change the Format property to time, and the ShowUpDown to True.
Either in the editor, or in code like
CODE
dateTimePicker1.Format = Time
dateTimePicker1.ShowUpDown = True
via VB.NET – Date Time Picker – How Can I Choose BOTH A Date And A Time? | DreamInCode.net.
Related posts:Tags: vb.net
