473,378 Members | 1,094 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Remove items from listbox

I use the following example (from another post) and it seemed to work fine.
However, when I add the syntax to remove the selected item from the
senderbox, I got error.
senderBox.Items.RemoveAt(senderbox.selectedIndex)

I was told that I need to copy selecteditems to an array and run the For
each routine from the array instead. Can someone please give me some idea
on how to accomplish this?
Thanks a million.

Bill
Private Sub lb1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles lb1.SelectedIndexChanged

Dim o As Object

Dim senderBox As ListBox

senderBox = DirectCast(sender, ListBox)

lb2.Items.Clear()

For Each o In senderBox.SelectedItems

lb2.Items.Add(o)

' to remove from senderBox

senderBox.Items.RemoveAt(senderbox.selectedIndex)
Next

End Sub
Nov 21 '05 #1
3 6022

"Bill Nguyen" <bi*****************@jaco.com> wrote in message
news:uv**************@TK2MSFTNGP14.phx.gbl...
I use the following example (from another post) and it seemed to work fine.
However, when I add the syntax to remove the selected item from the
senderbox, I got error.
senderBox.Items.RemoveAt(senderbox.selectedIndex)

I was told that I need to copy selecteditems to an array and run the For
each routine from the array instead. Can someone please give me some idea
on how to accomplish this?
Thanks a million.

Bill
Private Sub lb1_SelectedIndexChanged(ByVal sender As System.Object, ByVal
e
As System.EventArgs) Handles lb1.SelectedIndexChanged

Dim o As Object

Dim senderBox As ListBox

senderBox = DirectCast(sender, ListBox)

lb2.Items.Clear()

For Each o In senderBox.SelectedItems

lb2.Items.Add(o)

' to remove from senderBox

senderBox.Items.RemoveAt(senderbox.selectedIndex)
Next

End Sub

Have you used the debugger to step through your code in the event procedure?
Take note of the value of selectedIndex the second time through your loop.
As the item related to the selected index has been removed, my test
indicates the value of SelectedIndex is now -1, which throws the
System.ArgumentOutOfRangeException.
I'd recommend you look at the ArrayList class instead of using an array.

--
Peter [MVP Visual Developer]
Jack of all trades, master of none.
Nov 21 '05 #2
What was the error ?

rawCoder

"Bill Nguyen" <bi*****************@jaco.com> wrote in message
news:uv**************@TK2MSFTNGP14.phx.gbl...
I use the following example (from another post) and it seemed to work fine. However, when I add the syntax to remove the selected item from the
senderbox, I got error.
senderBox.Items.RemoveAt(senderbox.selectedIndex)

I was told that I need to copy selecteditems to an array and run the For
each routine from the array instead. Can someone please give me some idea
on how to accomplish this?
Thanks a million.

Bill
Private Sub lb1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lb1.SelectedIndexChanged

Dim o As Object

Dim senderBox As ListBox

senderBox = DirectCast(sender, ListBox)

lb2.Items.Clear()

For Each o In senderBox.SelectedItems

lb2.Items.Add(o)

' to remove from senderBox

senderBox.Items.RemoveAt(senderbox.selectedIndex)
Next

End Sub

Nov 21 '05 #3
Thanks Peter.

ArrayList seems to be the one I needed.

Bill

"Peter van der Goes" <p_**********@toadstool.u> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...

"Bill Nguyen" <bi*****************@jaco.com> wrote in message
news:uv**************@TK2MSFTNGP14.phx.gbl...
I use the following example (from another post) and it seemed to work
fine. However, when I add the syntax to remove the selected item from the
senderbox, I got error.
senderBox.Items.RemoveAt(senderbox.selectedIndex)

I was told that I need to copy selecteditems to an array and run the For
each routine from the array instead. Can someone please give me some
idea on how to accomplish this?
Thanks a million.

Bill
Private Sub lb1_SelectedIndexChanged(ByVal sender As System.Object, ByVal
e
As System.EventArgs) Handles lb1.SelectedIndexChanged

Dim o As Object

Dim senderBox As ListBox

senderBox = DirectCast(sender, ListBox)

lb2.Items.Clear()

For Each o In senderBox.SelectedItems

lb2.Items.Add(o)

' to remove from senderBox

senderBox.Items.RemoveAt(senderbox.selectedIndex)
Next

End Sub

Have you used the debugger to step through your code in the event
procedure? Take note of the value of selectedIndex the second time through
your loop. As the item related to the selected index has been removed, my
test indicates the value of SelectedIndex is now -1, which throws the
System.ArgumentOutOfRangeException.
I'd recommend you look at the ArrayList class instead of using an array.

--
Peter [MVP Visual Developer]
Jack of all trades, master of none.

Nov 21 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Supra | last post by:
in vb6 listbox1.remove item 5 how will i do in vb.net? regards
0
by: Shawn K | last post by:
I populate a listbox with the following code when my form loads: lstBox.Items.Add("value"); Once the page loads, I give the user the ability to remove items from the list box by selecting an...
4
by: Bilo | last post by:
I dont know what i am doing false. the code : private void button2_Click(object sender, System.EventArgs e) { foreach (string filename in listBox1.SelectedItems)...
4
by: mostafa atalla | last post by:
How can I remove some selected items from the listBox in the run time ??
1
by: Dan Bass | last post by:
I'm looking to develop a listbox with in-place editing where as each item is selected, it grows to fit in all the text boxes. When the item is deselected, it shrinks back to its original size. The...
3
by: Hrcko | last post by:
How to remove a selected item from listBox? Hrcko
4
by: Ron | last post by:
I've got a listbox that holds a list of groups. Users can select a group, hit the remove button and the group should be removed from the listbox. The only problem is that no matter which group you...
1
by: deepak | last post by:
hi , i have 2 listbox and 2 buttons like add and remove, both listbox have multiple selection true so that i can either add or remove multiple selected items. the first listbox is populated with...
7
by: Mike Johnson | last post by:
How do I remove a item that's been selected from a listview? I'm using Visual Basic 2005 express edition. Thanks
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.