Forms seem to be caching

  • Thread starter Thread starter Amy
  • Start date Start date
A

Amy

We have built a system that has Access front-ending a
sybase database. When sending updates to the database,
the data is saved, but we can't get the form to update
with the current information. It seems to be caching.

Any ideas?
 
Have you tried requering or refreshing the data source for your form

Me.Requery or Me Refresh

If it's a subform:

Me.MySubForm.Requery
Me.MySubForm.Refresh
 
Back
Top