Hi ya D!
In each of your after update events, you need to set the record number to a variable. Once that's done, after your requery, use the docmd.gotorecord offset
then setfocus to the field
Private Sub UnitPrice_AfterUpdate()
myrecnum = me.currentrecord
[SubTotal] = RoundCC([Multiplier] * [UnitPrice])
Me.Requery
docmd.gotorecord,,,myrecnum
SurchargePercent.SetFocus
End Sub
HTH,
Kevin
dartcoach
|