You can create a listbox that accepts multiple selections though by adding [multiple="multiple"] to the lcAttributes parameter:
<%= HtmlListBox("lstCustomers","","TT_Cust","Trim(Company)",; "Company + [(] + Careof + [)]",[multiple="multiple"],"--- Select a Company") %>
You can then use
DIMENSION laCustomerIds[1] lnCount = Request.GetFormMultiple(@laCustomerIds,"txtCustomers")
to retrieve the items in code.
As mentioned the helper does not support automatic reselection of items.
+++ Rick ---
from Maui, Hawaii