I have a Module of Public Properties (named Constants for what it's worth), none of which are associated to any specific object. I need to invoke those properties based on the value in a string variable. That variable's value will be the name of the property I need to use.
The best candidate I know of for something like this would be CallByName, but that requires an object to get the property from, which as I mentioned, doesn't exist in this case.
As an example, the first value that the variable should take is "Master". When it comes time I want to be able to use that variable to call up the property Master() (a string array declared as a public property).
Thanks in advance!
Dictionaryobject to store these named values would be a better design.