"You can have perfect precision"
Here is something that might inspire you.
DIM Converter(7) AS STRING
CLS
Number$ = "100.00"
PRINT Number$: PRINT
Repeat:
FOR Looper = 1 TO 6
Converter(Looper) = MID$(Number$, Looper, 1)
NewNumber = ASC(Converter(Looper))...
I remember having this problem. There are many ways to fix this once you understand how it works. I am sure you will find the one that works best for you. The most common mistake is creating a loop or sub in which a file is opened and then the sub/loop exit-ed. The simplest way that should work...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.