ok i need to remove a highlighted item from a List... someone please help and Fast... sorry i'm new -=\
thanx in advance.
-==FF==-
Printable View
ok i need to remove a highlighted item from a List... someone please help and Fast... sorry i'm new -=\
thanx in advance.
-==FF==-
Use the RemoveItem method.
Code:List1.RemoveItem (List1.ListIndex)
thanx... greatly appreciated... my VB Help file, well I don't have one so thanx again.
Code:listbox1.listindex =-1
make sure to add a
Code:On Error Resume Next
or you will get an error when the listbox runs out of items.