At runtime, I'd like to instantiate an object (e.g. myInvoice) when all I
know is the name of the class that has to instantiated (e.g. "Invoice").
Dim DesiredClass as String = "Invoice"
'// now create an instance of the desired class
???
Can this be done?
I hope the question is clear.
Thanks
TR