U
Usarian
I am making some custom objects that operate "inside" each other, the way a
datatable is available inside a dataset. (VB.NET 1.1)
I can't figure out how to make the child object know what object it's inside
of.
What I have is a custom object called Ageload which contains a custom
collection designed to hold another custom object called a Batch.
(Ageload, BatchCollection, Batch)
When I use a dataset with a table in it, I can do something like:
Datatable.Dataset (and get a reference to the dataset and all of it's
functions/properties)
I want to make my Ageloads and Batches do the same thing:
Batch.Ageload (and get a reference to the Ageload)
Thanks!
Usarian
datatable is available inside a dataset. (VB.NET 1.1)
I can't figure out how to make the child object know what object it's inside
of.
What I have is a custom object called Ageload which contains a custom
collection designed to hold another custom object called a Batch.
(Ageload, BatchCollection, Batch)
When I use a dataset with a table in it, I can do something like:
Datatable.Dataset (and get a reference to the dataset and all of it's
functions/properties)
I want to make my Ageloads and Batches do the same thing:
Batch.Ageload (and get a reference to the Ageload)
Thanks!
Usarian