Re: [U2] Odd error message

2011-07-22 Thread Colin Alfke
In UD ($basictype 'p') - you get this message when you try to access the zero element in an array. Eg: DIM X(1) X(0) = 'Hello world' Usually, a variable isn't getting set... With $basictype 'u' it puts the excess in (0) and this syntax works. In $basictype 'p' it puts the data in the last element

Re: [U2] Odd error message

2011-07-22 Thread Wols Lists
On 22/07/11 16:56, John Thompson wrote: > Never seen that one... > > My initial thought is: > > Is there a program that has a dimensioned array, where the data that the > program is trying to read in is larger than the array that was declared in > the BASIC program? The which situation is explic

Re: [U2] Odd error message

2011-07-22 Thread John Thompson
You could have a record out there larger than other records that that program normally reads in. Just a shot in the dark... On Fri, Jul 22, 2011 at 11:56 AM, John Thompson wrote: > Never seen that one... > > My initial thought is: > > Is there a program that has a dimensioned array, where the da

Re: [U2] Odd error message

2011-07-22 Thread John Thompson
Never seen that one... My initial thought is: Is there a program that has a dimensioned array, where the data that the program is trying to read in is larger than the array that was declared in the BASIC program? On Fri, Jul 22, 2011 at 11:52 AM, Glorfield, Gordon < gglorfi...@vertisinc.com> wro