Displaying Records In A Continuous Form

  • Thread starter Thread starter Walt
  • Start date Start date
W

Walt

I know this is easy, but how can I make a continuous form display only active
records without a new record at the bottom? I would like the new record to
be available only after the "Add Record" button has been selected. I've
looked at all of the form properties, and there isn't an obvious choice to
make this happen.
 
I know this is easy, but how can I make a continuous form display only active
records without a new record at the bottom? I would like the new record to
be available only after the "Add Record" button has been selected. I've
looked at all of the form properties, and there isn't an obvious choice to
make this happen.

AllowAdditions = False will do this. Set it back to True in the add record
button's click event.
 
You could try setting the property of the form to "Allow additions" to No.
Behind your button to add a record you could start with the option
me.allowadditions=true and from that point on decide what should happen next.

just a thought
 
Back
Top