mrrayj60
Registered User.
- Local time
- Today, 06:29
- Joined
- Sep 3, 2009
- Messages
- 103
I have a form that filters down to searched records. It will narrow it down to a single or a few records, when there are a few records with the same tag# but different arrival time the user will select a specific record and double click it to go to a new form. That all works ok with one problem, it wont take the exact record he clicks but the first record of the filtered list. The record also has a unique id and I would like it to take that record to the new form.
DoCmd.OpenForm "frmVisit", , , "[License Tag Number] = '" & Me.txttag & "'"
I need something like + VisitorID added so I get the right record. VisitorID is my unique id when a record is added so its unique.
Thanks for your time. Ray
DoCmd.OpenForm "frmVisit", , , "[License Tag Number] = '" & Me.txttag & "'"
I need something like + VisitorID added so I get the right record. VisitorID is my unique id when a record is added so its unique.
Thanks for your time. Ray