I am using recalc to recalculate a total field in a form footer it is fine when I am editing a record but when I am adding a new one it refreshes the entire form - why ?
I am refreshing the form but I would like to just refresh the field (I cannot get the syntax for this)
I am using Access 2003 .adp
The form is called fsubestdets and the control is txtsubtotal
Private Sub txtmatcost_AfterUpdate()
Dim mymatid As Variant
Dim MyExtCost As Variant
If Me.Parent.txtnew2 = "saved" Then
mymatid = Me.txtmatid
Me.Recalc
Call Calcs1
Me.Recordset.Find "[matid]= " & mymatid
Else
End If