Is it possible to count with nubers who have nulls ?
Like 001, 002, 003, 004
With this code there are no zeros:
Text1.text = Text1.text + 1
(1, 2, 3...)
Thanks for some help, Matt ;)
Printable View
Is it possible to count with nubers who have nulls ?
Like 001, 002, 003, 004
With this code there are no zeros:
Text1.text = Text1.text + 1
(1, 2, 3...)
Thanks for some help, Matt ;)
Try using the format() function.
Text1.text = Format(Text1.Text+1,"000")