Windows Forms, Help!
Jun 7, 2013 at 1:14pm
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+="_ ";
}
|
Jun 7, 2013 at 1:46pm
lblWord->Text = lblWord->Text + "_ ";
Jun 7, 2013 at 2:13pm
I came to the conclusion that it was the label MaximumSize that was the problems but thanks for the help! :)
Jun 7, 2013 at 5:04pm
Objects of type System.String are not mutable.
Topic archived. No new replies allowed.