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

Refresh control

Former Member
0 Likes
490

When i tried to refresh a table control using the following code

REFRESH CONTROL tbl_ctrl FROM SCREEN 0100.

I got a syntax error ," tbl_cntl must be a character-type field (data type C,N,D,or T )"

What is the error here ? How to use this command ? Any other declaration required other than table control ?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
441

REFRESH CONTROL 'TBL_CTRL' FROM SCREEN 0100.

use quotes for TBL_CTRL

2 REPLIES 2
Read only

Former Member
0 Likes
442

REFRESH CONTROL 'TBL_CTRL' FROM SCREEN 0100.

use quotes for TBL_CTRL

Read only

naimesh_patel
Active Contributor
0 Likes
441

Try like this:


REFRESH CONTROL 'TBL_CTRL' FROM SCREEN 0100.

Regards,

Naimesh Patel