Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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