Selecting the time

  • Thread starter Thread starter elliot.stokes
  • Start date Start date
E

elliot.stokes

I want the user of my application to be able to open up a form and
select a time for a certain job to run. Windows uses a sort of
NumericUpDown control to do it. Is there any way to implement similar
or is there a similar control in .net
 
I want the user of my application to be able to open up a form and
select a time for a certain job to run. Windows uses a sort of
NumericUpDown control to do it. Is there any way to implement similar
or is there a similar control in .net

Use the DateTimePicker control. Set the Format property to Custom, set
the CustomFormat property to the desired time format (e. g. hh:mm tt)
and finally set the ShowUpDown property to true.
 
Back
Top