Neil,
Seeing a new record at the end of any continuous subform dataset is
normal. It really hasn't "added" a new blank record, but it's there, ready
for data entry. A new record is only created when data is entered and
saved, then a new "New" record is immediately created.
If you must... use the AllowAdditions property of the subform. On the
main form, select the subform object, and in the Enter and Exit events...
Private Sub frmTest1Sub_Enter()
Forms!frmTest1.frmTest1Sub.Form.AllowAdditions = True
End Sub
Private Sub frmTest1Sub_Exit(Cancel As Integer)
Forms!frmTest1.frmTest1Sub.Form.AllowAdditions = False
End Sub

Signature
hth
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions
> Hi,
>
[quoted text clipped - 7 lines]
>
> Thanks.