I have this script:
a = "1"
While a < 2
"script"
a = a + 1
Wend
but if I trie this:
a = "1"
b = "2"
While a < b
"script"
a = a + 1
Wend
then it is not working. can anybody help me to get this fixes?
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.