list boxes

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

Guest

does anyone know how to use the multi and extend features of the list box form
 
Tom

thanks for the respose but i have read the help and didn't quite understand
it. I want the list box to return the list or a value if multiple items are
selected.
dodson
 
msg = ""
With listbox1
for i = 0 to .listcount-1
if .selected(i) then
msg = msg & "Item " & i & " value: " & .list(i) & _
" is selected" & vbNewline
end if
Next
End with
msgbox msg
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top