Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Text edit area control : refresh the text

Former Member
0 Likes
629

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
479

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 -


2 REPLIES 2
Read only

Former Member
0 Likes
480

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 -


Read only

Former Member
0 Likes
479

thanks

I used delete_text method to clear off the text from text edit area.

rgds,

Anand