E edh Registered User. Local time Today, 09:16 Joined Aug 29, 2012 Messages 11 Sep 12, 2012 #1 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
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
boblarson Smeghead Local time Today, 01:16 Joined Jan 12, 2001 Messages 32,059 Sep 12, 2012 #2 Post the actual code/macro actions(and arguments if any) that you have tried.
D Dewi Registered User. Local time Today, 01:16 Joined Jun 18, 2012 Messages 26 Sep 17, 2012 #3 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.
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.
R rodmc Registered User. Local time Today, 08:16 Joined Apr 15, 2010 Messages 514 Sep 17, 2012 #4 cant you just set the subform for data entry?