When I run the following script I get the error "001 Value out of range" after 30 seconds. If I take out the array and make sMES a normal variable it works fine.
Any ideas?
Thanks,
Bonk
proc main
string sMES[3]
integer Loops
transmit "MES^M"
Loops = 0
while (Loops++) < 3
while nullstr sMES[Loops]
rget sMES[Loops]
yield
endwhile
endwhile
endproc
Any ideas?
Thanks,
Bonk
proc main
string sMES[3]
integer Loops
transmit "MES^M"
Loops = 0
while (Loops++) < 3
while nullstr sMES[Loops]
rget sMES[Loops]
yield
endwhile
endwhile
endproc