hi guys
Have an issue with opening/searching forms etc in Access...
Usually I'd use the code below to open a form at a particular record, but what I'd like to be able to do is open the form at that particular record, but still be able to scroll up or down through adjacent records.
Does anyone know how to do this?
here's the code I currently use:
TIA!
Dave
Have an issue with opening/searching forms etc in Access...
Usually I'd use the code below to open a form at a particular record, but what I'd like to be able to do is open the form at that particular record, but still be able to scroll up or down through adjacent records.
Does anyone know how to do this?
here's the code I currently use:
stDocName = "frmDetails"
stLinkCriteria = "[txtThingID]=" & "'" & Me![Combo1] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
TIA!
Dave