Ok, I admit I'm a newbie and I thought I understood arrays, but I am having difficulty with simple array. What I want to do is cycle through a while loop and open different user file each pass, such as 00000001.urs, then 00000002.usr, etc., until I have opened each file. Then, as I open each file I want to read two records from each user file ("record1", "record2") then keep track of the results in an array that would look like this:
Pass Number Member Num Record1 Record2
0 1 member1data member1data
1 2 member2data member2data
2 etc........
3
4
5
.
.
.
.
How would I struture such an array??
Basil