I have a list box in which random records are selected. I want to delete the selected records from list box when the user right clicks on the selected records.
I have a list box in which random records are selected. I want to delete the selected records from list box when the user right clicks on the selected records.
you can check which mouse button did the user click in the mouseDown event of the ListBox, if its right mouse button, remove the selected items in the list. Blumen