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 Form_BeforeInsert(Cancel As Integer)
MaxRecs = 6
If Me.Recordset.RecordCount >= MaxRecs Then
MsgBox "Set complete"
Me.Undo
Cancel = True
Me.Recordset.MoveLast
End If
End Sub