Dim Type question

claudio

Member
Licensed User
Longtime User
Hi, all

I'm here again.
Now my question is:

Can i define a Dim Type() myvar only once?

Example: if i have a struct called person and i have serveral groups of persons i have to define:

Dim Type(Name, ID, Age) group1(6)
Dim Type(Name, ID, Age) group2(10)

and so on...

It would be nice if i can do something like:

Dim Type(Name, ID, Age) person
Dim group1(6) as person
Dim group2(10) as person

and so on.
I did't found nothing similar

Best regards
Claudio
 
Top