Hello World,

Once again I'm in need for your help....

I've built a collection of my own class which also holds a collection with onather class.
so i can do something like this :
colalfa(2).colbeta(3).text = "test"

from a db I read a lot of records with data like this:
alfanr betanr strtext
1 4 aaa
56 78 bbb
46 2 ccc

I want to add this data to my collection.

something like:
colalfa(alfanr).colbeta(betanr).text=strtext

how can i check if the colalfa(alfanr).colbeta(betanr) is already created ???
because if it does not exist yet i have to add it to my collection.


Greetinx,

Don