Why!
You can control it from a form by using code like
Dim rst As Recordset, db As Database
Set db = CurrentDb
Set rst = db("tablename"
rst.MoveLast
If rst.RecordCount > 12 Then
Me.AllowAdditions = false
Else
Me.allowadditions = true
End If
Set rst = Nothing
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.