cocktailsk
Programmer
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?
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?