Hi,
Suppose I have UDT:
[tt]UDType
Enabled as Boolean
Value as Double
ObjValue as Object
End Type[/tt]
Having private UDType variable "iUDTypeVariable" in the class module to store values, is it possible (if so, how?) to define "UDTypeProperty" Property Let/Set and Get procedures, so that I can use:
[tt]MyClassObject.UDTypeProperty.Enabled=True
MyClassObject.UDTypeProperty.Value=3.1415926535
Set MyClassObject.UDTypeProperty=ObjVariable[/tt]
combo
Suppose I have UDT:
[tt]UDType
Enabled as Boolean
Value as Double
ObjValue as Object
End Type[/tt]
Having private UDType variable "iUDTypeVariable" in the class module to store values, is it possible (if so, how?) to define "UDTypeProperty" Property Let/Set and Get procedures, so that I can use:
[tt]MyClassObject.UDTypeProperty.Enabled=True
MyClassObject.UDTypeProperty.Value=3.1415926535
Set MyClassObject.UDTypeProperty=ObjVariable[/tt]
combo