I believe the ListBox control is meant to be used for 'selecting/displaying' purposes; not 'creation/population' purposes.
The ListBox control will require that a static list of values or a SmartObject be configured as the data source to display the data.
When you transfer a semi-colon delimited string of item into the ListBox Control, it will select those item (in light blue) from the list of items available (base on the value, not display; in my example, both value and display is 'computer', however you can have value = 1 and display = 'computer' and will need to pass it '1' instead of 'computer')
When you transfer the selected items in the ListBox Control into something else, it will return the list of item selected; as a semicolon delimited string;
In that case is there any control that I can utilize to achive what I wanted? I would like the users to type into a text box, and I would like some sort of list field to show what they have added(ideally something other than another textbox)
Hi davidedpg10,
You can use List view and add Items to it dynamically from text box.