ListBox Control

G

Guest

Guest
Hi,
I have a ListBox control in my userform. The source would be some cells in my excel sheet. Basically, how do I tell if an entry in the listbox is selected?? Something like..

For all entries in listbox1
if an entry is selected then
msgbox entries.value
end if
end for

What's the correct syntax to perform such action? Thanks guys
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Hi

I take it you have the MultiSelect Property set to Multi?

If so here is some code from a file I am currently working on.



Dim UnitsToPrint as Integer
Dim bHaveOne as Boolean

UnitsToPrint = 0
For i = 0 To UnitListBox.ListCount - 1
If UnitListBox.Selected(i) = True Then
iRow = iRow + 1
Sheet20.Cells(iRow, 26) = UnitListBox.List(i)
UnitsToPrint = UnitsToPrint + 1
bHaveOne = True
End If
Next i

If bHaveOne = False Then 'No Units selected
MsgBox "You have not selected any record(s) to print.", vbCritical, "Nothing to print!"
Exit Sub
End If
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,208
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top