Date time picker

  • Thread starter Thread starter Alan T
  • Start date Start date
A

Alan T

Windows form:
I want to put a control to let the user to select the time only.
Any idea what control or third party control can do that?
 
Windows form:
I want to put a control to let the user to select the time only.
Any idea what control or third party control can do that?

Try using DateTimePicker from standard windows.forms
 
The provided DateTimePicker can be used to accomplish this.

Simply drop a DateTimePicker onto your form and change the following
properties.
ShowUpDown = true
Format = time

this should give you what you are looking for.

HTH
Darren Sim
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top