In a message dated 5/20/2005 2:47:20 AM Pacific Daylight Time, [EMAIL PROTECTED] writes:
> myVar = 1:@FM:2 > SELECT myVar > myVar<1> = 3 > READNEXT X THEN PRINT X Right but that's easy to fix. Instead of SELECT myVar Use SELECT myVar to myListVar or SELECT myVar to 3 And then instead of READNEXT X you use READNEXT X FROM myListVar or READNEXT X FROM 3 And your "problem" vanishes. It is always true that if you change an array after the select then its not reading the array. My example way back in this thread was that you can step through an array using Readnext, not that it solves every possible configuration of that :) Will ------- u2-users mailing list [email protected] To unsubscribe please visit http://listserver.u2ug.org/
