lardman363
Automotive
I have an array containing objects (surfaces) and a second array equal to the first. The size of the first array is redimmed(wipes out the contents), then the second array, fills the first array.
aObjects = aTemp
ReDim aObjects(aObjects-1)
For I = 0 to ubound (aObjects)
aObjects(I) = aTemp(I)
Next
But when it gets to aObjects(I) = aTemp(I), I get "object does not support property or method" on aObjects. What would cause this?
Any help would be appreciated.
aObjects = aTemp
ReDim aObjects(aObjects-1)
For I = 0 to ubound (aObjects)
aObjects(I) = aTemp(I)
Next
But when it gets to aObjects(I) = aTemp(I), I get "object does not support property or method" on aObjects. What would cause this?
Any help would be appreciated.