Forms seem to be caching

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?
 
R

Reggie

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
 
Top