Recalc not working

  • Thread starter Thread starter Faraz A. Qureshi
  • Start date Start date
F

Faraz A. Qureshi

In one of my forms I want a subform to be updated the moment I enter it and
one of it's combobox be reflecting all the entries in one of the filed in the
parent/major form.

However,

Private Sub CrTrans_Enter()
Me.Recalc
End Sub

doesn't seem to be carryingout the same.

Any idea?
 
On Thu, 11 Feb 2010 02:45:01 -0800, Faraz A. Qureshi

How about Me.Requery?

-Tom.
Microsoft Access MVP
 
If all you want is the combobox to be updated, then perhaps all you need to do
is use Me.NameOfCombobox.REQUERY

John Spencer
Access MVP 2002-2005, 2007-2010
The Hilltop Institute
University of Maryland Baltimore County
 
Back
Top