I have a situation where I have the name of one variable in a second variable, but I want to look at and use the contents of the first variable. Example:
If txtData has information in it that I want to use, but all I have to go on is the fact that the contents of strVarName is "txtData", how do I use strVarName to get the contents of txtData?
Thanks for any help you can provide!
WaltW
Code:
dim strVarName as string
strVarName = "txtData"
If txtData has information in it that I want to use, but all I have to go on is the fact that the contents of strVarName is "txtData", how do I use strVarName to get the contents of txtData?
Thanks for any help you can provide!
WaltW