Up until now I have never had a need to select multiple items from a DCL list box. I have the tile set to multiple_select = true in the DCL, but I can't figure out how to convert the results of the selection to what I need. The results are the number positions of the selected list items, as a string. I would like to convert this string into a list, but how? VL-String->LIST doesn't quite work. This is what I have: "2 4 6 7 9" This is what I want: (2 4 6 7 9) or ("2" "4" "6" "7" "9") Is there a better, or easier way to handle multiple selections from list boxes? How can I use these results to find out which items have been selected? Do I have to parse the string? Thanks for any help. I'm going around in circles on this one. Dan