Out of interest, has anyone found a solution to the behavior of continuous subform allowing user to keep scrolling even when the last record has been passed, leaving us with a blank screen as the last record moves upward and only stopping when the last record is at the top of the detail section?
It would be nice to somehow disable any further downward scrolling once the last record is fully visible in the continuous form.
The only way, AFAICT, is to set the recordset of the form to snapshot, and it must be done via the recordsource (e.g. the form's RecordsetType property doesn't seem to have any effects). However, linked table or ADO recordset doesn't seem to behave the same way. In case of a linked table, the behavior is weird. First time I tried it, it kept reverting to dynaset recordset until I made a saved query. Even so, the behavior persists. ADO's Locktype seems to have no effect on how it behave. (and why should it anyway? It's a form thing, not a recordset thing.)
Maybe I'm missing something obvious?
Thanks!
It would be nice to somehow disable any further downward scrolling once the last record is fully visible in the continuous form.
The only way, AFAICT, is to set the recordset of the form to snapshot, and it must be done via the recordsource (e.g. the form's RecordsetType property doesn't seem to have any effects). However, linked table or ADO recordset doesn't seem to behave the same way. In case of a linked table, the behavior is weird. First time I tried it, it kept reverting to dynaset recordset until I made a saved query. Even so, the behavior persists. ADO's Locktype seems to have no effect on how it behave. (and why should it anyway? It's a form thing, not a recordset thing.)
Maybe I'm missing something obvious?
Thanks!