I have a form with a combo box for last name. It shows the record
with whatever name I select in the combo box. I am trying to get the
same results with code when I open the form by using a value from
another form.
I tried
Me.RecordsetClo ne.FindFirst "[LastName] = '" &
Forms!SelectNam e![snLastName] & "'"
Me.Bookmark = Me.RecordsetClo ne.Bookmark
Am I just missing something small or is this not possible?
Thanks for any help.
with whatever name I select in the combo box. I am trying to get the
same results with code when I open the form by using a value from
another form.
I tried
Me.RecordsetClo ne.FindFirst "[LastName] = '" &
Forms!SelectNam e![snLastName] & "'"
Me.Bookmark = Me.RecordsetClo ne.Bookmark
Am I just missing something small or is this not possible?
Thanks for any help.
Comment