views:

69

answers:

3

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);

A: 

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

Sam Holder
+5  A: 
Exceptions.Text = message.Substring(trav + 1, expdiff - 1);
ExceptionList.Add(Exceptions.Text);
Andrey
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.
Oliver
A: 

You need to use the Textbox.Text property

Morten Anderson