I want to make an array variable be a property definition in a class module. In the class module, statements such as:
Dim dblArray() as Double
Property Let MyProperty(dblWPT As Double)
dblArray() = dblWPT
End Property
Access Help does not talk about arrays as properties, only scalar varaibles as properties.
1) Is this possible?
2) How to? I have tried all sorts of syntax variations, and received all sorts of error messages.
Tom Budlong
TomBudlong@Adelphia.net
Dim dblArray() as Double
Property Let MyProperty(dblWPT As Double)
dblArray() = dblWPT
End Property
Access Help does not talk about arrays as properties, only scalar varaibles as properties.
1) Is this possible?
2) How to? I have tried all sorts of syntax variations, and received all sorts of error messages.
Tom Budlong
TomBudlong@Adelphia.net