Slimjimmpc
Registered User.
- Local time
- Today, 06:37
- Joined
- Jan 22, 2011
- Messages
- 12
Two problems. Using Access 2000
1. I need the user to be able to enter 15 records in my subform and only 15.
Currently using this bit of code to limit adding 15 records and it works.
If Me.RecordsetClone.RecordCount > 14 Then
Me.AllowAdditions = False
End If
What i need is a way so the user must enter the 15 record for the yes/no combo box column before closing the form. They have to enter 15 yes/no as it is a checklist.
2. How do i get it so they have to enter information into the main form first before adding anything to the subform? If a field is required to link it such as say Site that wouldn't be problem.
Any help would be greatly appreciated. Thanks
1. I need the user to be able to enter 15 records in my subform and only 15.
Currently using this bit of code to limit adding 15 records and it works.
If Me.RecordsetClone.RecordCount > 14 Then
Me.AllowAdditions = False
End If
What i need is a way so the user must enter the 15 record for the yes/no combo box column before closing the form. They have to enter 15 yes/no as it is a checklist.
2. How do i get it so they have to enter information into the main form first before adding anything to the subform? If a field is required to link it such as say Site that wouldn't be problem.
Any help would be greatly appreciated. Thanks