deleting last record on filtered form causes form to become blank

A

astro

Any suggestions on this? Does Access destroy the underlying recordset when
the last record is deleted? All controls dissappear including the close
button!

Thanks.
 
A

Allen Browne

The detail section goes blank if there are no records to display and no new
record can be added (so it can't show the new record row.)

That happens in a form where the recordsource is read-only, or where the
form's AllowAdditions property is No.
 
A

astro

ahhhhh.....

that's it...thanks

Allen Browne said:
The detail section goes blank if there are no records to display and no
new record can be added (so it can't show the new record row.)

That happens in a form where the recordsource is read-only, or where the
form's AllowAdditions property is No.
 
Top