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 SelectDGVRow(ByVal Row As Integer)
bs1.Position = Row
dgv1.Rows(Row).Selected = True
End Sub
Private Sub dgv1_RowHeaderMouseClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles dgv1.RowHeaderMouseClick
If e.Button = Windows.Forms.MouseButtons.Right Then
SelectDGVRow(e.RowIndex)
End If
End Sub
Private Sub dgv1_CellMouseClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles dgv1.CellMouseClick
If e.Button = Windows.Forms.MouseButtons.Right Then
SelectDGVRow(e.RowIndex)
End If
End Sub