How can I get rid of the "new record" line in a form?

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

I display some data in a form in "Continuous forms" view, and I seted in the
form properties NO for "Allow aditions" and for "Data entry", but it still
appears in the form the line for New record (*).
How can I get rid of it ?
 
Set the Forms Allow Additions to "No". This can be found in th
properties under the data tab
 
Chris said:
I display some data in a form in "Continuous forms" view, and I seted
in the form properties NO for "Allow aditions" and for "Data entry",
but it still appears in the form the line for New record (*).
How can I get rid of it ?

If the form's AllowAdditions property is actually set to No, the "new
record" line will not appear. I have never seen or heard of any other
behavior. So either your setting of the property didn't get saved, or
something (some code, perhaps?) is changing the setting of that
property, or the data you're looking at is actually on a subform with
AllowAdditions set to Yes, while it's the main form's AllowAdditions
property that is set to No.

Please check each of these possibilities and report back.
 
Chris said:
I display some data in a form in "Continuous forms" view, and I seted in the
form properties NO for "Allow aditions" and for "Data entry", but it still
appears in the form the line for New record (*).
How can I get rid of it ?
 
Chris said:
After seting and "Allow filters" to NO, it is working.


seted > > in the form properties NO for "Allow aditions" and for
"Data entry", > > but it still appears in the form the line for New
record (*). > > How can I get rid of it ?
"new > record" line will not appear. I have never seen or heard of
any other > behavior. So either your setting of the property
didn't get saved, or > something (some code, perhaps?) is changing
the setting of that > property, or the data you're looking at is
actually on a subform with > AllowAdditions set to Yes, while it's
the main form's AllowAdditions > property that is set to No.

I'm glad it's working, but I'm puzzled. I don't see why the setting of
the AllowFilters property would have anything to do with this. Is there
code behind the form, or other code that manupulates the form as you
open it, or afterward?
 
Back
Top