B
Barry Moses
Can anyone see why when I select a 'second' person with the same
lastname...why the form below doesn't change...however it does when I select
a different lastname.
Private Sub Combo73_AfterUpdate()
Dim rst As Recordset
'Find the Last Name Selected
Set rst = Me.RecordsetClone
rst.FindFirst "[LastName] = '" & Me.Combo73 & "'"
Me.Bookmark = rst.Bookmark
rst.Close
Set rst = Nothing
End Sub
Private Sub Form_Current()
Me!Combo73 = Me!LastName
End Sub
lastname...why the form below doesn't change...however it does when I select
a different lastname.
Private Sub Combo73_AfterUpdate()
Dim rst As Recordset
'Find the Last Name Selected
Set rst = Me.RecordsetClone
rst.FindFirst "[LastName] = '" & Me.Combo73 & "'"
Me.Bookmark = rst.Bookmark
rst.Close
Set rst = Nothing
End Sub
Private Sub Form_Current()
Me!Combo73 = Me!LastName
End Sub