View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mike Milligan Mike Milligan is offline
external usenet poster
 
Posts: 10
Default Listbox none selected feature

It seems that there is no property for determining if a listbox
(multiselect) has at least one selection. Browsing this board I find the
common method below for accomplishing the task, but was surprised that no
property exists. Is it true?

For i = 0 to .listcount - 1
If .selected(i) = true then
'do something'
End if
Next i

Mike