Is there a way to modify an edit table displayed on the screen through code, i.e. the number of columns may be changed on the fly?
Thanks.
John,
Sure can! Use "SEND_MESSAGE".
RESULT=SEND_MESSAGE(EDITTABLE_FOCUS,'INSERTCOL',COLUMN_NBR,COLUMN_INFO)
COLUMN_INFO=COLUMN LABEL (Account)
COLUMN_INFO=COLUMN STYLE (264)
COLUMN_INFO=COLUMN CHARS (20)
COLUMN_INFO=COLUMN WIDTH (35)
That's what I needed. Thank you.