I have a module of common properties (called Constants for what it stands for), none of which are associated with any specific object. I need to call these properties based on the value in a string variable. This variable value will be the name of the property I need to use.
The best candidate I know for this type will be CallByName, but it requires an object to get a property, which, as I mentioned, does not exist in this case.
As an example, the first value a variable should take is "Master." When the time comes, I want to use this variable to call the Master () property (an array of strings declared as a public property).
Thanks in advance!
source
share