How to get a variable dinamically?

Hi!

Imagine that i have a series of variables…

[code]dim abc as string
dim d as new dictionary

abc=“super test”
d.value(“mytest”)=“xyz”
d.value(“another test”)=“123”
[/code]
I want to do, on a textarea / webtextarea is write this:

msgbox abc msgbox d.value("mytest")

and on my app, get a popup message with the value of abc and the value of d.value(“mytest”)

Is there any way to do that?…

Alex

Sorry if this isn’t what you are asking for, use the + sign. If you want space between the 2 then msgBox abc + " " + d.value(“mytest”)