Hi Access-Friends,
I've got a table (field1, field2) with x records and want to save the records in a two dimensional array. What I have is:
ReDim ArrayY(0 To countRecords, 0 To 1)
For k = 0 To countRecords
For j = 0 To 1
ArrayY(j, k) = RS!field1
RS.MoveNext
Next
Next
It doesn't work because I don't know hot to read/save the second field
Many thanx in advance
Key
I've got a table (field1, field2) with x records and want to save the records in a two dimensional array. What I have is:
ReDim ArrayY(0 To countRecords, 0 To 1)
For k = 0 To countRecords
For j = 0 To 1
ArrayY(j, k) = RS!field1
RS.MoveNext
Next
Next
It doesn't work because I don't know hot to read/save the second field
Many thanx in advance
Key