sayzer,
Don't know if it's any better or not, but here's a different way.
VAR_Fisrt = VARX / 1000VARX = 56789
'I need digit4 and digit3 (56) from this number in to a byte variable;
'I do it in this way:
VAR_Fisrt = (VARX DIG 4)*10 + (VARX DIG 3)
'This gives me 56.
VAR_Second = (VARX / 10) // 100'I also need digit2 and digit1 (78) in to another byte variable;
'I do it in this way:
VAR_Second = (VARX DIG 2)*10 + (VARX DIG 1)
' This gives me 78.
<br>
Bookmarks