Hi,
I have a barcode that once scanned returns a string 8 characters long.
Further along the program I have this line of code:
Eg, 00100000 I would want to then be 00200000 or eg, 01200000 would be 01300000, yet when I add 1 it is not giving the desired result
Can somebody advise what I am doing wrong?
I have a barcode that once scanned returns a string 8 characters long.
Further along the program I have this line of code:
VB.NET:
Mid(Header_FirstStop, 1, 3) = (Mid(Header_FirstStop, 1, 3) + 1)
Eg, 00100000 I would want to then be 00200000 or eg, 01200000 would be 01300000, yet when I add 1 it is not giving the desired result
Can somebody advise what I am doing wrong?