My property set statement has an arglist because the matching get statement has args and the rule is let/get have the same args, but with let having +1.
How can I assign the let property in the code?
EG - Public Property Set Category(ByVal Var1 As String, _
ByRef Var2 As Variant, ByRef Var3 As Variant,ByRef Var4 As Variant, ByRef Var5 As Variant, ByVal rsNewValue As ADODB.Recordset).
In the calling code, how does the set statement look?
I can't do Set object.Category = rsCategory...
VB errors out with the runtime error, "Argument not optional."
There are NO examples out there save for single variable sets. HELP!!!