G
Guest
I need to modify the Text property of 12 buttons on a form. They are already declared as button1, button2, ..., button12
With JavasCript this would be easy
for (int i=1; i<=12; i++)
eval("button"+i+".value") = <myText>; //The myText placeholder is a dataTable ro
How can it be done in C#
Thanks
Diego Rio
With JavasCript this would be easy
for (int i=1; i<=12; i++)
eval("button"+i+".value") = <myText>; //The myText placeholder is a dataTable ro
How can it be done in C#
Thanks
Diego Rio