array - type
Harry
It is equivalent to two-dimensional array:
the array somename can be reffered to as somename(i,j) where the i can go from 0 to 9 and the j from 0 to 1.
Example:
Dim Type(No,Surname,Name,Nick,Father,Mother,Spouse,Marriage,Sex,Fcod,Mcod,Scod,Gen,Pic,Birth,Death,Prev_N)DB(2500)
Dim Type(No,Surname,Name,Nick,Father,Mother,Spouse,Marriage,Sex,Fcod,Mcod,Scod,Gen,Pic,Birth,Death,Prev_N)record
.......
For i = 1 To dbsize
For j = 0 To 16
db(i,j) = record(j)
Next
Next