I have tried a couple ways to move through forms with the current record opening in the next form and closing the previous form. Using this code:
DoCmd.OpenForm "Contacts", , , "[ContactID] = " &ContactID
DoCmd.Close acForm, "Customers"
Single forms work fine this way.
The problem is, when I open a continuous form I only show the one specific record. I would like to show that record first, but the rest of the records also.
The continuous form is used for edits and searches.
DoCmd.OpenForm "Contacts", , , "[ContactID] = " &ContactID
DoCmd.Close acForm, "Customers"
Single forms work fine this way.
The problem is, when I open a continuous form I only show the one specific record. I would like to show that record first, but the rest of the records also.
The continuous form is used for edits and searches.