Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Listbox selections to delimited string
Message
From
12/11/1999 13:28:51
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Listbox selections to delimited string
Miscellaneous
Thread ID:
00290666
Message ID:
00290666
Views:
51
If this message looks familiar its because I posted it earlier but it disappeared. I want to make a delimited string from the selected items in a multiselect listbox. So far all the code I can muster is:

FOR nCnt = 1 TO ThisForm.List1.ListCount
IF ThisForm.List1.Selected(nCnt)= .t.
thisform.mytextbox.value = thisForm.List1.List(nCnt) + ","
ENDIF
ENDFOR

(I'm displaying the string in mytextbox to check progress during development)

This returns one selection plus a comma. But how do I get all selections?
Next
Reply
Map
View

Click here to load this message in the networking platform