Update a field

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

Guest

Hi
I have a firls there by click runs a query
works fine
But the field have now a new value in the table
how do i get the field to update this so i can see it in my form

regards
Alvin
 
alvin said:
Hi
I have a firls there by click runs a query
works fine
But the field have now a new value in the table
how do i get the field to update this so i can see it in my form

regards
Alvin

I think that you need to add this line of code in VB after your query runs:

me.yourform.requery

that should refresh your form and show the records that were added or the
edits that were made to any records.
 
Back
Top