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.
The only option I see now is to custom the "mouse down" event, and calculate the row by the Y position.
Private Sub MSFlexGrid1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Debug.Print MSFlexGrid1.MouseRow ' < There's your row
Debug.Print MSFlexGrid1.MouseCol
End Sub