In a class module named, I have
Private pARRactivityPred() As String
Public Property Let predArray(Value() As String)
pARRactivityPred = Value
End Property
And calling it:
record.predArray = Split(string1, ",")
However, i am not sure why i get the following error:
"Compile error: Definitions of property procedures for the same property are inconsistent, or property procedure has an optional parameter, a ParamArray, or an invalid set or final parameter"
Does anyone know whats going on?