Input Mask

  • Thread starter Thread starter Gicha
  • Start date Start date
G

Gicha

I am trying to set an input mask to fill data from the
right but to auto fill the beginning with zero's. That
is: Typing 12345 would yield 00012345 ... typing 123
would yield 00000123. Is this possible?
 
I am trying to set an input mask to fill data from the
right but to auto fill the beginning with zero's. That
is: Typing 12345 would yield 00012345 ... typing 123
would yield 00000123. Is this possible?

Use the Format property instead: set the Format of the field to
00000000.
 
Back
Top