Overflow in an unbound control? First guess would be that you are trying to
divide by zero. Don't.
If it was a bound control then it could also be an attempt at storing a
value to large for the field. Ex.: trying to store 2,000,000 in a field
specified as Byte (which would only hold up to 255).
HTH,