C
clawdogs
Hi. I have the following code that works up until Me.Requery. I
can't get the code to go to the specified record after Me.Requery.
Control name is COFID and control source is COFID. Someone please
help.
Private Sub COFID_AfterUpdate()
Dim lngKeyVal As Long
lngKeyVal = Me.COFID
Me.Refresh
'Move back to the original record - this doesn't seem to work...
With Me.RecordsetClone
..FindFirst "[COFID] = " & lngKeyVal
End With
End Sub
can't get the code to go to the specified record after Me.Requery.
Control name is COFID and control source is COFID. Someone please
help.
Private Sub COFID_AfterUpdate()
Dim lngKeyVal As Long
lngKeyVal = Me.COFID
Me.Refresh
'Move back to the original record - this doesn't seem to work...
With Me.RecordsetClone
..FindFirst "[COFID] = " & lngKeyVal
End With
End Sub