TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Glenn Patton
NA
308
83.1k
What is the correct way of coping one text box to another using += ...
Feb 22 2012 9:10 AM
Hi,
Bit of an odd one I am reading back some data an loading it to a rich text box
using the method:
for(int i = 0; i < Max; i++)
rtbData_Back += stringParts[i] +','+'\n' ;
I have noticed some of the data missing when I change it to:
for(int i = 0; i < Max; i++)
rtbData_Back = rtbData_Back + stringParts[i] +','+'\n';
I have not seen error since. I thought += was inherited from C++/Java,
so that can't be the problem, can it?
Glenn
Reply
Answers (
4
)
C# problems with a simple blackjack game
Please provide oops concepts with simple real time coding examples.