Amy said:
If that doesn't work, you may want to try something like
Forms!otherform.Controls("the control").Requery
Or
Me.tableName_Subform.Controls("the control").Requery
I found recently that this was the only way I could get it to work for me.
Amy, FYI,
The syntax:
Forms!otherform.Controls("the control").Requery
is equivalent to:
Forms!otherform.[the control].Requery
and the square brackets are only needed when the control
name contains a non-alphanumeric character (e.g. a space).