Remove an item in a listbox1 by clicking on it with the mouse to highlight it and then clicking the remove buttonthis is the code i have for button1_click
listbox1.Items.Remove(listbox1.SelectedItem)
Dim xfind As ListItem = Nothing
xfind = SellerList.Items.FindByText(sellercnictxt.Text)
If xfind Is Nothing Then
SellerList.Items.Add(sellercnictxt.Text)
End If