Create another text box bound to PaperCost field in the table tblPrintCharges. Make it hidden. Let's call it txtBoundPaperCost. In the after update event of txtPaperCost, put:
Private Sub txtPaperCost_AfterUpdate ()
txtBoundPaperCost = txtPaperCost
End Sub