1

I am getting the following failure message when i build on the below two lines

http://www.freeimagehosting.net/][img]http://www.freeimagehosting.net/uploads/eb92ef98ac.jpg

alt text

Exceptions = message.Substring(trav + 1, expdiff - 1); ExceptionList.Add(Exceptions);

3 Answers 3

5
Exceptions.Text = message.Substring(trav + 1, expdiff - 1);
ExceptionList.Add(Exceptions.Text);
Sign up to request clarification or add additional context in comments.

1 Comment

The TextBox has also the function AppendText() if you don't want to set the whole text completely new and you need to avoid flickering.
0

seems like Exceptions is the name of a TextBox, and not a string.

Try using the Exceptions.Text property in both places that you currently have Exceptions

Comments

0

You need to use the Textbox.Text property

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.