#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default list boxes

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


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default list boxes

See the help on this feature. It explains it.

--
Regards,
Tom Ogilvy

"hdodson" wrote in message
...
does anyone know how to use the multi and extend features of the list box

form




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default list boxes

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

"Tom Ogilvy" wrote:

See the help on this feature. It explains it.

--
Regards,
Tom Ogilvy

"hdodson" wrote in message
...
does anyone know how to use the multi and extend features of the list box

form





  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default list boxes

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
--
Regards,
Tom Ogilvy

"hdodson" wrote in message
...
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

"Tom Ogilvy" wrote:

See the help on this feature. It explains it.

--
Regards,
Tom Ogilvy

"hdodson" wrote in message
...
does anyone know how to use the multi and extend features of the list

box
form







Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Selecting subsets using combo boxes or list boxes CLamar Excel Discussion (Misc queries) 0 June 1st 06 07:43 PM
Questions on combo boxes and list boxes. Marc New Users to Excel 1 March 14th 06 09:40 AM
list boxes Tony Excel Discussion (Misc queries) 1 September 11th 05 04:04 PM
List boxes Joe Powers Excel Programming 4 July 30th 04 02:41 PM
List boxes/combo boxes Tibow Excel Programming 3 February 17th 04 12:35 PM


All times are GMT +1. The time now is 04:49 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"