Link to home
Start Free TrialLog in
Avatar of born4code
born4code

asked on

Class Property Arrays in VB6?

Is this possible?

How would I change the following class property in VB6 to an ARRAY?

Private mvarProduct         As String

Public Property Let Product(ByVal vData As String)
    mvarProduct = vData
End Property

Public Property Get Product() As String
    Product = mvarProduct
End Property

Thanks!
ASKER CERTIFIED SOLUTION
Avatar of iHadi
iHadi
Flag of Syrian Arab Republic image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial