I am using this code in the on exit of a field on my subform,
Private Sub Quantity_Exit(Cancel As Integer)
Dim intQty As Integer
intQty = Quantity
If intQty > 0 Then
Quantity = -Quantity
End If
End Sub
Works fine, however if the Qty is >0 then I have hit Tab twice to move to the...