
Arrays in Class Modules & how to access
Public Property Get ArrayElement(Element As Long) As Long (or whatever)
If Element <= Ubound(Array) And Element >= LBound(Array) Then
ArrayElement = Array(Element)
End If
End Property
Quote:
On Thursday, May 09, 1996, Colin Jacobsen wrote...
> I have created a class module with an array declared as private. How do
I
> write the property get and let procedures so I can access individual
> elements of the array. And how can I redim the array?
> Thanks