Hi,
I have 15 textboxes that I created. Now, I want to assign a value to each of these texboxes.
I want to do somethign like this.
for(int i = 0; i < 15; i++)
{
//example: texbox0.Text = 0;
(textbox.Name+i.tostring).Text = i.tostring();
}
Thank you for your help.