Dear all, which value UBound will be returns for the following dim array ?
where it was like below
Code:
dim a(4,5,100)
UBound(a,1) = value ?
UBound(a,2) = value ?
UBound(a,3) = value ?
Code:
dim a(100,5,4)
UBound(a,1) = 100
UBound(a,2) = 5
UBound(a,3) = 4