Getting to the basics, a function takes in a string (the name of the class).
For example "CustomerDataset".
Given this string, I want to find all the tables in the Class.
something like:
Dim DS as Class = Reflection.ConvertStringToClass("CustomerDataset")
or
Dim DS as getType("CustomerDataset")
I'm not picky about how I'm doing this, just so long as I end up with access to the tables collection of the dataset, being given a name.
It might help to say I'm using this in a Macro, so I'm not sure if DTS will help at all with this.
Thanks if you have any info
For example "CustomerDataset".
Given this string, I want to find all the tables in the Class.
something like:
Dim DS as Class = Reflection.ConvertStringToClass("CustomerDataset")
or
Dim DS as getType("CustomerDataset")
I'm not picky about how I'm doing this, just so long as I end up with access to the tables collection of the dataset, being given a name.
It might help to say I'm using this in a Macro, so I'm not sure if DTS will help at all with this.
Thanks if you have any info