Okey, so what I'm trying to do is to set about 5 labels to visible using a for loop.
int nr_bokstaver = slutt_losning.Length;
for (int index = 0; index <= nr_bokstaver; index++)
{
label+index.Visible = true;
}
I want the name of the label to change according to the value of the index of the for loop, but I just can't seem to do it.