padlocked17
Registered User.
- Local time
 - Today, 04:48
 
- Joined
 - Aug 29, 2007
 
- Messages
 - 276
 
What is the best way to locate a record and then move to that record on a form?  I have a field that is checking the SSN of a person and I need to if a record already exists with that SSN it will display a MsgBox and then take the user to the record of the person already entered in there with that SSN.
Currently I had a recordset that is setting a bookmark and then using :
	
	
	
		
I've got it detecting if there is an existing entry just fine, I just can't get it to navigate to that record.
Thanks!
 Currently I had a recordset that is setting a bookmark and then using :
		Code:
	
	
	Me.Bookmark = rsc.bookmark
	I've got it detecting if there is an existing entry just fine, I just can't get it to navigate to that record.
Thanks!