MajP
You've got your good things, and you've got mine.
- Local time
- Today, 12:48
- Joined
- May 21, 2018
- Messages
- 9,501
You have code that really locks this form down. So you have to make allow additions to true for the subform. Your code sets it to false.
I added this in the edit button
Me.Generic_Training_Record.Form.AllowAdditions = True
You will have to figure out where and when to allow additions and edits. I think the subform will inherent the main form properties so you have to work around that. In other words I do not think you can set the main form to allow additions to false without it doing the same to the subform.
I added this in the edit button
Me.Generic_Training_Record.Form.AllowAdditions = True
You will have to figure out where and when to allow additions and edits. I think the subform will inherent the main form properties so you have to work around that. In other words I do not think you can set the main form to allow additions to false without it doing the same to the subform.