Access 97
I want to requery the data being displayed on a form, then I want to return
to the record I was in.
Why doesn't this code work?
Private Sub CmdRefsh_Click( )
Dim RecId As Integer
RecId = Me.TxtID
Me.Requery
With Me.RecordsetClo ne
.FindFirst "[ID] = " & RecId
End With
End Sub
Any help?
Thnaks!
I want to requery the data being displayed on a form, then I want to return
to the record I was in.
Why doesn't this code work?
Private Sub CmdRefsh_Click( )
Dim RecId As Integer
RecId = Me.TxtID
Me.Requery
With Me.RecordsetClo ne
.FindFirst "[ID] = " & RecId
End With
End Sub
Any help?
Thnaks!
Comment