I have several number type fields which i would like them to be equal to 0 each time the user erases (uses BackSpace) to clear it. What im doing is the following:
My issue here is that i have to do it in every textbox, so maybe theres a better way to do this. thanks in advance
.
Code:
Private Sub txtBurden_AfterUpdate()
If IsNull(txtBurden) Then
txtBurden = 0
End If
End Sub
My issue here is that i have to do it in every textbox, so maybe theres a better way to do this. thanks in advance
