If, say for example, I am passing an imagelist to a property would I use:
orVB Code:
Public Property Set ImageList(ByVal Value As Object) Set milsImageList = Value End Property Public Property Get ImageList() As Object Set ImageList = milsImageList End Property
Basically, Variant or Object as the passed parameter...?VB Code:
Public Property Set ImageList(ByVal Value As Variant) Set milsImageList = Value End Property Public Property Get ImageList() As Variant Set ImageList = milsImageList End Property
Woka
