4043 error from SELECTION-LIST

Status
Not open for further replies.
L

Leonspants

Guest
I have a SELECTION-LIST defined as:

DEFINE VARIABLE sel_TPlate AS CHARACTER
VIEW-AS SELECTION-LIST MULTIPLE
SCROLLBAR-HORIZONTAL SCROLLBAR-VERTICAL
SIZE 36 BY 17.86
FONT 60 NO-UNDO.


The list contains hundreds of items with each item ranging from 10 - 40 characters. When a user selects multiple items, they are stored in a character variable.

DEFINE VARIABLE listItems AS CHARACTER NO-UNDO.
listItems = sel_TPlate:SCREEN-VALUE.


I understand that this error is caused by exceeding the 32k limit, but I am unsure of the best way to solve this problem. I have attempted to change the variable and list to a LONGCHAR, but this does not solve the issue. Any feedback is appreciated. Thanks!

Continue reading...
 
Status
Not open for further replies.
Top