I am writing a program that involves stringing to a multiline textbox. My problem is that when the first data is entered the second data entered replaces the first. I am wanting to display the data like a list. How do I go about doing this?
problem with string method
Collapse
X
-
Originally posted by smc1234I am writing a program that involves stringing to a multiline textbox. My problem is that when the first data is entered the second data entered replaces the first. I am wanting to display the data like a list. How do I go about doing this?
At a guess, you are forgetting to include the old value when you add the new one. If you simply place a value in a property (or variable), it replaces the previous value.
Comment