NumericUpDown Control leading Zeros

  • Thread starter Thread starter cmdolcet69
  • Start date Start date
C

cmdolcet69

Does anyone know how to set a property to display the leading zeros in
the numberic updown control for vb 2005?
I'm using the control and want to input a value of 01 however it will
just show 1?
 
You can always inherit from the numeric up down and override the text
property to display leading zeros based upon the number length and the
max number length.
 
You can always inherit from the numeric up down and override the text
property to display leading zeros based upon the number length and the
max number length.

How do i do that?
 
Back
Top