I'm trying to find out if I can have a class's name (like CPerson) stored in a database field, then instantiate the class by just having the name of the class as a string?
so instead of
I could have something like
BlackDice
so instead of
Code:
set objPerson = new CPerson
I could have something like
Code:
set objPerson = new ConvertFunction("CPerson")
BlackDice