How can I increment a textbox that has a value from 0001 to 0002,0003...
text1.text = val(text1.text) + 1
doesnt work as it returns the value of 0001 to '2' only it removes the zeros.
text1.text = val(text1.text) + 1
doesnt work as it returns the value of 0001 to '2' only it removes the zeros.