How do I SAVE A FIELD in code

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

Guest

I have a code that needs to requery in order to work. But I get this
annoying message when it runs:

"You must save the current field before you run the Requery action."

is there a way to make it save the field?

I'm new at this--BE GENTLE :)
 
Christian > said:
I have a code that needs to requery in order to work. But I get this
annoying message when it runs:

"You must save the current field before you run the Requery action."

is there a way to make it save the field?

I'm new at this--BE GENTLE :)

Posting your code would have been an idea ;-) but at a guess you need to use
the "Update" method ... so if you have a recordset "rs", do rs.Update.

HTH - Keith.
www.keithwilby.com
 
Back
Top