Multiple Selection from COMBOX or ListBox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'd like to implement either a combox or listbox to allow user to select multiple items from the list. Can someon please suggest me some hints as how can I setup the combox/listbox as well as how to identify what are selected

Thanks in advance
 
Set the multiselect property to the appropriate value

With Combobox1
for i = 0 to .Listcount - 1
if .selected(i) then
msgbox .list(i) & " is selected
end if
Next
End With
--
Regards,
Tom Ogilvy


Wellie said:
I'd like to implement either a combox or listbox to allow user to select
multiple items from the list. Can someon please suggest me some hints as
how can I setup the combox/listbox as well as how to identify what are
selected ?
 
Back
Top