Hi, Is there any way to modify a variable name automatically in a loop.Something like:
$1_toto = "titi"$2_toto ="tutu"x=1While x <= 2 msgbox ("","",$x_toto) (Where x should be 1 the first time and 2 the second time)x =x+1endwhileThx