Private Sub fg_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
Dim i As Integer
Dim j As Integer
Dim c As Integer
i = fg.Row ' first row selected
j = fg.RowSel ' last row selected
While c <= j - i ' itterate through the selection
fg.RemoveItem (fg.Row)
c = c + 1
Wend
End Sub