From: yootaeho on
Hi all,

In my report, I have a dataset (say dsResults) that contains

refCode value -> they are column names
txtStudent Jonathon -> from here, values
txtTeachder Greg
txtAddress 5/10 Blah
txtPhone 002324324

Now in my report layout, I have txtStudent, txtTeachder, txtAddress
and txtPhone textfields.

What I would like to do is to display corresponding values for each
textfield Name from the dataset.
Something like this in the expressions

for txtStudent
=dsResults(thisControlName).value

The reason I would like to archieve this is for multi-language
translation.
When 'ENG' gets passed to the stored procedure as parameter, it will
return the above record set,
When 'JAP' gets passed to the stored procedure as parameter, it will
return the record set in Japanese etc

Appreciate your help.