You ca store in an array of bytes whatever you want, but cannot do this if myarray="1234567890" then do that.
You have to do a nested if-then comparison like that:
if myarray[1]="1" then
if myarray[2]="2" then
if myarray[3]="3" then
....
if myarray[0]="0" then
goto success
endif
....
endif
endif
endif
no_success:
success:
Of course this can be done with a for-next loop more elegant, but for the sake of simplicity I left it like that.
Ioannis
Bookmarks