Combo-box

gasomma

Member
Hello,

for to populate my combo-box I use that.

FOR EACH customer
NO-LOCK:
wname = wname + CBX-cust:DELIMITER IN FRAME FR + customer.name.
END.
CBX-cust:LIST-ITEMS IN FRAME FR = SUBSTR(wname,2,500).
CBX-cust = ENTRY(1,CBX-cust:LIST-ITEMS).

In this case the separator is ",". How I can change the separator, using another one?

Thx in advance.

JCA
 

Cringer

ProgressTalk.com Moderator
Staff member
assign CBX-cust:delimiter in frame FR = "|".

Or whatever. Do that during the initialise of the screen before you populate the combo.
 

gasomma

Member
Hello,

in the procedure above, the contains of the variable "wname" exceed the 32k.
How I can solve that?

many thanks,

JCA
 
Top