how do i remove listbox...

  • Thread starter Thread starter Supra
  • Start date Start date
ListBox.Items.RemoveAt (5)

in vb6
listbox1.remove item 5
how will i do in vb.net?
regards
 
how do i put same rows if i changed new items.
for example if u remove 5 and new item in same psoition in 5 how do i do
that?
regards
 
You mean inserting an item at index 5? If yes, ListBox.Items.Insert (5,
"Item 5")

how do i put same rows if i changed new items.
for example if u remove 5 and new item in same psoition in 5 how do i do
that?
regards
 
thank u, shiva
You mean inserting an item at index 5? If yes, ListBox.Items.Insert (5,
"Item 5")

how do i put same rows if i changed new items.
for example if u remove 5 and new item in same psoition in 5 how do i do
that?
regards

Shiva wrote:
 
Back
Top