OpenForm...newRecord in subform

edh

Registered User.
Local time
Today, 09:16
Joined
Aug 29, 2012
Messages
11
I have another subform problem, Simply trying to move to a new record using a button control... but macro won't work and the syntax for doing this with a non-sub-form doesn't either. Hope you can help
 
Post the actual code/macro actions(and arguments if any) that you have tried.
 
Try...

If Me.NewRecord = False Then
Me.AllowAdditions = True 'not entirely necessary
Me.Recordset.AddNew
End If

linked to your Button,which I assume is located on the subform itself.
 
cant you just set the subform for data entry?
 

Users who are viewing this thread

Back
Top Bottom