Home All Groups Group Topic Archive Search About
Author
14 Sep 2006 11:08 AM
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

Author
14 Sep 2006 1:17 PM
Chris Dunaway
elliot.sto***@gmail.com wrote:
> 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.