Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.70K
1 Posted Topic
this is what i did on mine.. Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) Dim a As String If KeyCode = vbKeyDelete Then If listview1.SelectedItem = True Then a = MsgBox("Are you sure you want to delete?", vbInformation + vbYesNo, "REQUESTING CONFIRMATION") If vbYes Then listview1.ListItems.Remove (listview1.SelectedItem.Index) End If …
The End.
bluemarine90