Inserting an edit table column through code (OpenInsight 32-bit Specific)
At 25 SEP 2002 02:57:42PM John S Edgar wrote:
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.
At 25 SEP 2002 04:41PM Richard Hunt wrote:
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)
At 26 SEP 2002 11:51AM John S Edgar wrote:
That's what I needed. Thank you.