views:

85

answers:

1

Hello everyone!

I'm letting users select a date/time for a scheduled task to run, using two NumericUpDowncontrols.

I'd like one-digit values to be padded with a leading 0, so as to display 09:00 instead of 9:0.

Any ideas?

Thanks,
CFP.

+1  A: 

This is not possible with a NumericUpDown Control.

0x90
Thanks! I'll have to use a `DomainUpDown` then.
CFP