cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Windows Forms, Help!
Windows Forms, Help!
Jun 7, 2013 at 1:14pm UTC
Leozy
(4)
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 UTC
closed account (
z05DSL3A
)
lblWord->Text = lblWord->Text + "_ ";
Jun 7, 2013 at 2:13pm UTC
Leozy
(4)
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 UTC
vlad from moscow
(6539)
Objects of type System.String are not mutable.
Topic archived. No new replies allowed.