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 CVRT_Click()
Dim TT As Integer
Me.List5.SetFocus
For TT = 0 To Me.List5.ListCount - 1
Me.List5.ListIndex = TT
Set RS = Forms.ShotData.RecordsetClone
RS.FindFirst "[ID2] = " & Me.List5.Column(1)
'Me.Bookmark = RS.Bookmark
'Me.Shot = Me.S3.Caption
rs.Edit
rs.Shot = Me.S3.Caption
rs.Update
Next
Me.Requery
End Sub