Add new record in continuous form

jmeek

Registered User.
Local time
Today, 03:28
Joined
Aug 16, 2005
Messages
38
I have a main form which opens another form, the link being AccountID. On the second form I have AllowAddtions=No to prevent the blank line at the bottom of the continuous form. I would like to add a new record to this continuous form but its just not working. I have added a button (OnClick)
with this line
Me.AllowAdditions = True
Me.Text59 = Me.AccRef
However the AccountID field is not populated

I need some help please

Thanks
 
I have a main form which opens another form, the link being AccountID. On the second form I have AllowAddtions=No to prevent the blank line at the bottom of the continuous form. I would like to add a new record to this continuous form but its just not working. I have added a button (OnClick)
with this line
Me.AllowAdditions = True
Me.Text59 = Me.AccRef
However the AccountID field is not populated

I need some help please

Thanks

it is not populated because you are allowing the additions dynamically that has to be read when the form initializes itself. after the allow line, put this line in: me.requery
 

Users who are viewing this thread

Back
Top Bottom