Hi, All,
How to declare the class:
Class A
Property A1
Property A2
For each property, there are two properties B1 and B2, so you can use then
as following:
dim cls: set cls = new A
cls.A1.B1="11"
cls.A1.B2="12"
cls.A2.B1="21"
cls.A2.B2="22"
Another question is:
if the Class A has 20 properties and assign each one to a value with array:
cls.A1=ar(1)
cls.A2=ar(2)
cls.A3=ar(3)
...
How to use a loop for it?
Thanks,
-Andrew