Windows Forms, Help!

This doesnt work? It's windows forms, do you have any suggestions?

1
2
3
4
5
			 for (int i=0; i<5;i++)
			 {
				 lblWord->Text+="_ ";
				 
			 }
closed account (z05DSL3A)
lblWord->Text = lblWord->Text + "_ ";
I came to the conclusion that it was the label MaximumSize that was the problems but thanks for the help! :)
Objects of type System.String are not mutable.
Topic archived. No new replies allowed.