‎2008 Oct 15 10:51 PM
Hello,
I have built a Text edit area control in a container on a dialog program screen. When I return back to the text edit area control , the text is not refreshed.
How to refresh the old text?
Rgds,
Anand
‎2008 Oct 16 1:45 AM
Hi Anand P,
While returning from that screen which contains TEXT EDIT
AREA CONTROL, just vanish the INSTANCE by using FREE
statement.
Create the instance only in the PBO of this screen using CREATE
OBJECT statement.
Another way is just assign NULL table to this TEXT EDIT CONTROL while returning from this screen.
Regards,
R.Nagarajan.
-
We can -
‎2008 Oct 16 1:45 AM
Hi Anand P,
While returning from that screen which contains TEXT EDIT
AREA CONTROL, just vanish the INSTANCE by using FREE
statement.
Create the instance only in the PBO of this screen using CREATE
OBJECT statement.
Another way is just assign NULL table to this TEXT EDIT CONTROL while returning from this screen.
Regards,
R.Nagarajan.
-
We can -
‎2008 Oct 21 8:44 PM
thanks
I used delete_text method to clear off the text from text edit area.
rgds,
Anand