Hi experts
I defined some text-variables on project startup
text_a_1 = "abc";
text_a_2 = "def";
text_b_1 = "ghi"; and so on
then I defined on a page
V1 = "a";
V2 = 2;
disp = "text_"..V1.."_"..V2
Label.SetText("label1", disp);
and the result is: text_a_2 and not def
??????? HELP ??????????


