Instead of using code in your form events, use the function option instead and pass it Screen.CurrentControl. Sorry that I don't have time to give you a tested example but the following should get you started.
Public Function LostFocus(ctl As Control)
LostFocus = strconv(ctl ,3)
End Function
I would suggest either the BeforeUpdate or AfterUpdate event for your code. You don't need to do anything unless the user changed something.
If you need to do any data validation then use BeforeUpdate because it passes a Cancel parm which if set to True will not allow the user off of the control in question regardless of what they clicked or what key they pressed.
Otherwise, use the AfterUpdate event.
For our example, assume you are using the AfterUpdate event. In the AfterUpdate event of your textboxes, put the function call something like this (I don't remember whether or not you need the = sign).
=LostFocus(Screen.CurrentControl)
You may have to tweak the syntax a little bit since this is off the top of my (admittedly flat) head.
Good Luck!