Requery

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

Quick question:

On my form I have a requery button to update information. When clicked, the
database go back to the first record. Is there a way that, after the requery
is clicked, it stays on the current record?

Thanks!!
 
Why do you save the record using Requery?

You can use

If Me.Dirty Then
Me.Dirty = False ' will save the record
End if
 
I wasn't intending to save it with the requery, after information was
inputted I just wanted to refresh the screen to show the updated dollar
amount not go back to the first record. What does "Dirty" do? Will that
refresh the current record and stay on the current record?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top