View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 6,953
Default using a multi-select listbox to pull data

for i = 0 to Listbox1.Listcount - 1
if listbox1.Selected(i) then
' work with the listbox1.list(i)
end if
Next

Multiselect is a property of the listbox which you can set in the properties
window.

--
Regards,
Tom Ogilvy