I have a continuous form with some combo boxes in the footer where the user can enter search criteria. For one of my applications, the users have requested that instead of limiting the record(s) displayed on the form to those that match the user specified value, they would like the display to just move to the record where the value matches the value they specified. That way they could use that as a starting point to move up and down to nearby records.
I can't figure out how to do this (in VBA code). The DoCmd.GotoRecord will, in effect, work the same way as if you set the filter property for the form and requery the form (which then only shows the records that match the criteria). I also found DoCmdFindRecord, but that doesn't seem to do anything.
Can you give me suggestions about how to do this?
I can't figure out how to do this (in VBA code). The DoCmd.GotoRecord will, in effect, work the same way as if you set the filter property for the form and requery the form (which then only shows the records that match the criteria). I also found DoCmdFindRecord, but that doesn't seem to do anything.
Can you give me suggestions about how to do this?