I've got an interesting problem regarding form opening criteria.
I have four forms (A,B,C,D) which are linked by "forward" and "proceed" buttons. From the stating form A, I can scan to any database entry using the navigation controls. When I find the one I want I can edit data and proceed to the next form using:
stLinkCriteria = "[IncidentNumber]=" & Me![IncidentNumber]
DoCmd.Close
DoCmd.OpenForm "B", , , stLinkCriteria
The problem occurs when I return to the first form. If I use the same kind of filter of the "return" button from form B, I lose my navigation control. If I open without a filter though I return to the first entry by default!
Is there a way to open a form at a specific entry without losing the ability to navigate?
Hoping someone understands,
Ian./
I have four forms (A,B,C,D) which are linked by "forward" and "proceed" buttons. From the stating form A, I can scan to any database entry using the navigation controls. When I find the one I want I can edit data and proceed to the next form using:
stLinkCriteria = "[IncidentNumber]=" & Me![IncidentNumber]
DoCmd.Close
DoCmd.OpenForm "B", , , stLinkCriteria
The problem occurs when I return to the first form. If I use the same kind of filter of the "return" button from form B, I lose my navigation control. If I open without a filter though I return to the first entry by default!
Is there a way to open a form at a specific entry without losing the ability to navigate?
Hoping someone understands,
Ian./