Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have this code that was bestowed upon me by Tom Ogilvy many moons
ago, that returns all of the times selected in a listbox: Dim varr() icount = 0 for i = 1 to listbox1.Listcount - 1 if listbox1.selected(i) then icount = icount + 1 Redim preserve varr(1 to icount) varr(icount) = listbox1.list(i) End if Next I'd like to return the actual caption. How would I do that? tod |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Select Multiple Items and return value for Dropdown or listbox | Excel Discussion (Misc queries) | |||
Remove all Listbox items | Excel Programming | |||
Adding Items to a ListBox-Unique Items Only | Excel Programming | |||
Items in a Listbox | Excel Programming | |||
Checking Listbox Items | Excel Programming |