I have an array that has NOTHING in it.
When I msgbox for the lbound and the ubound it gives a subscript out of range error.
I am trying to store information in it without useing the Array function because it would delete the other information that is already in the array. I tryed:
ReDim Preserve rvar(LBound(Owned) To (UBound(Owned) + 1))
but it gave me a subscript out of range error. how could I do this?




Reply With Quote