T
Tinus
Hello,
I want to do the following:
I have 10 labels on my form, called Label0 to Label9. Now I want to change
the Text property of all the labels at once, e.g.:
for (int i = 0; i < 10; i++)
{
Label(i).Text = "Hello, this is label: "+i.ToString();
}
Now, ofcourse this won't work. But how can this be done?
Thanks for your help,
Tinus
I want to do the following:
I have 10 labels on my form, called Label0 to Label9. Now I want to change
the Text property of all the labels at once, e.g.:
for (int i = 0; i < 10; i++)
{
Label(i).Text = "Hello, this is label: "+i.ToString();
}
Now, ofcourse this won't work. But how can this be done?
Thanks for your help,
Tinus