I have another problem,
Using repeat and until, example
repeat
code here
until (eg1)
How can I keep repeating until either (eg1) requirements met or (eg2).
So it will end if eg1 meets requirements or end if (eg2) meets requirements.
Sorry if it doesn't make sense I did not know how to explain it.
Thank you,
Mainchip.
I think you mean that you need something like this:
repeat
// Do stuff
until(eg1 or eg2)
the conditions in while/wend or repeat/until loops can use "and", "or", "not" etc just like in if/then conditions.
Derek.