hi
for vb translation i should know what you're trying to do with this button
can you explain in human readable text ?
there are 3 labels named lbl1,lbl2,lbl3
there are 3 string variables called var1,var2,var3
I want to change the caption of lbl1,lbl2,lbl3 respectivly equal to var1,var2,var3
It's true that I can do it manualy. But I'm searching for a easier way. In actionscripting this can be done with the following code
-
for(x=1;x<=3;x++){
-
_root["lbl" add x].caption=_root["var" add x}
-
}
-