Hi,
Assuming that there will be 101 ranks, what are the relative memory requirements of the two following uses of Arrays, please?
Dim strArray1(100,5) as string
strArray1(0,1)="England"
strArray1(0,2)="Bristol"
strArray1(0,3)="High Street"
strArray1(0,4)="31"
strArray1(0,5)="Jones"
Dim strArray2(100,5,50,200,200,1)
strArray(0,1,1,1,1,1,0)="Jones"
