Please describe in more detail under what circumstances your data
"disappears". Three common circumstances are:
- The form's DataEntry property is set to Yes, which will permit new entries
but not show existing records.
- The form's RecordSource is set to a query rather than the table itself,
and the query is filtering the records by some criteria.
- A continuous form has a combo box whose RowSource is changed by code,
usually from a previous combo box. For example, a County combo box, filtered
by a State selection to show only those counties in the selected state.
Since the combo box can have only one RowSource at any given time, rather
than a different one for each row, previous selections that are no longer in
the RowSource cannot be displayed.
Sprinks