Is it possible to evaluate a string as the concatenation of a string and variable?
I'd like to store a string such as:
"A new file (" & stParam & ") has been created."
into field "Message" of a table, then retrieve that field value and evaluate the string with the established value of stParam.
so that stMessage = "A new file (Foo123.txt) has been created."
Is this possible at all? I tried the EVAL function, and got an error saying it couldn't find stParam.
-------------------
Rob Foye
Database Management
Regions Bank
I'd like to store a string such as:
"A new file (" & stParam & ") has been created."
into field "Message" of a table, then retrieve that field value and evaluate the string with the established value of stParam.
Code:
stParam = "Foo123.txt"
stMessage = rs!Message
{do something to evaluate the string}
Is this possible at all? I tried the EVAL function, and got an error saying it couldn't find stParam.
-------------------
Rob Foye
Database Management
Regions Bank