s it possible to combine to variable content into a variable name?
For example:
Dim a As String = “First”
Dim b As String = “Last”
Then combine these 2 into variable name for the constant dynamic variable like:
Const FirstLast As String (inside a module, localization) then print the content, example:
label1.text = a + b with (“en”) <- localization language
Translated : label1.text = FirstLast(“en”)
Hope I have explained what Im trying to do. Is it possible?