I have a Form that has information about instructors (SSN, Last name, first name and so on) [This is based on query]. Within the form, I have a subform that is based on a query that has last name, first name and phone number.
I want the ability to click on a record on the subform and then for the form to update to that record.
I have tried the following code with no luck.
Private Sub Field61_Click()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[Instructor_SSN] = '" & Me![Field61] & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
Thanks for any help in advance
Greg
I want the ability to click on a record on the subform and then for the form to update to that record.
I have tried the following code with no luck.
Private Sub Field61_Click()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[Instructor_SSN] = '" & Me![Field61] & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
Thanks for any help in advance
Greg