-
Hi,
I am new to making ActiveX controls. I need to create a property such as below but I'm not exactly sure what Kind of code goes into these procedures.
Private Property Get GridCol() As Variant
End Property
Private Property Let GridCol(ByVal vNewValue As Variant)
End Property
Thanks in advance,
Jeff
-
Code:
Private mvNewValue As Variant
Private Property Get GridCol() As Variant
GridCol = mvNewValue
End Property
Private Property Let GridCol(ByVal vNewValue As Variant)
mvNewValue = vNewValue
End Property