Array: Doesn't Support Property or Method
Array: Doesn't Support Property or Method
(OP)
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.





RE: Array: Doesn't Support Property or Method
The follwing code works for me
CODE --> vba
indocti discant et ament meminisse periti
RE: Array: Doesn't Support Property or Method