A
Al
I would like to open form to a specific record and have
all records available to move through. I know I can use
the following wizard code:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmFOLLOWUP"
stLinkCriteria = "[DATE]=" & "#" & Me![DATE] & "#"
DoCmd.openform stDocName, , , stLinkCriteria
However, when the form opens, only the selected record is
available when you try to move next or previous. Is there
an easy way to open a form to a specific record and still
have all records available?
TIA,
Al
all records available to move through. I know I can use
the following wizard code:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmFOLLOWUP"
stLinkCriteria = "[DATE]=" & "#" & Me![DATE] & "#"
DoCmd.openform stDocName, , , stLinkCriteria
However, when the form opens, only the selected record is
available when you try to move next or previous. Is there
an easy way to open a form to a specific record and still
have all records available?
TIA,
Al