Create a custom Forms collection object [SOLVED]
Hi,
I am trying to prevent code duplication such as:
With Me.subForm1.Form
.AllowAdditions = False
.AllowDeletions = False
.AllowEdits = False
End With
With Me.subForm2.Form
.AllowAdditions = False
.AllowDeletions = False...