visual c++ annoying error

Help in visual c++ cause i am new to visual c++?

Hey guys i have a problem i am new to visual c++ so i wrote this testcode invisual c++ void test() { for(int a=0;a<=10;a++) { Working->Text=(Working+"\n test \n go"); } } which gave me this wierd output when run

System.Windows.Forms.RichTextBox,Text:System.Windows.Forms.RichTextBox,Text: ... test go

.

Additional Details Working is a rich text box
please use code tags net time

you are passing the object "Working" in to a text field i guess that is not what you want?
Working->Text=Working+"bla";

i guess you ment:

Working->Text=Working->Text+"bla";
Last edited on
Topic archived. No new replies allowed.