ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Deleting multiple items from a list box (https://www.excelbanter.com/excel-programming/363325-deleting-multiple-items-list-box.html)

kev_06[_5_]

Deleting multiple items from a list box
 

I've set up a listbox (pre-loaded values) so that the user can select
multiple values. I'm trying to set up a control button so that when it
is pressed, the selected items will be deleted from the list box. Any
suggestions?


--
kev_06
------------------------------------------------------------------------
kev_06's Profile: http://www.excelforum.com/member.php...o&userid=35046
View this thread: http://www.excelforum.com/showthread...hreadid=548637


Sean

Deleting multiple items from a list box
 
try this code

Private Sub CommandButton1_Click()

Dim counter As Integer

counter = ListBox1.ListCount

Do While i < counter

If ListBox1.Selected(i) = True Then
ListBox1.RemoveItem i
counter = counter - 1
End If

i = i + 1

Loop

End Sub

remember to change the name of the listbox and the commandbutton.

"kev_06" wrote:


I've set up a listbox (pre-loaded values) so that the user can select
multiple values. I'm trying to set up a control button so that when it
is pressed, the selected items will be deleted from the list box. Any
suggestions?


--
kev_06
------------------------------------------------------------------------
kev_06's Profile: http://www.excelforum.com/member.php...o&userid=35046
View this thread: http://www.excelforum.com/showthread...hreadid=548637




All times are GMT +1. The time now is 08:50 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com