Charles Bell
Posts: 519
Nickname: charles
Registered: Feb, 2002
|
|
Re: Appending data in text area
|
Posted: Jun 16, 2002 9:20 PM
|
|
If you are not getting anything at all to show up in the textarea, then the textarea you think you are writing to must not be the one you are looking at. This might mean that you have defined the textarea more than one time in your program, perhaps once globally and another time locally, with the global version being the one you are looking at and the local (inside a method) the one you are writing to. (OR vice versa).
You should be able to write and see the result of some fool proof dummy code you can insert to test it.
Suggest you look for where the text area is declared by searching all the times it occurs in your source code. (Control-F in windows..)
|
|