Numeric Field Overflow

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi. I have a Form where I have a combo box in the header. The user will
enter data in this box and the data will display in the form body.

My problem is that for some of the records, I receive the following error:
"Run Time error 3349 - numeric field overflow"

I am not sure what the problem is ... can anyone give insight?

Thanks,
Mike.
 
What type of field are you putting the data into? If, for example, you're
trying to put a value in an Integer field, and the value is greater than
32,767 (or less than -32,768), you'll get that error.
 
Hi, Doug.

The field is simplay a text field. One of the records that will not appear
has the text "TR101" in the field.
 
Is the textbox bound to a field in the underlying query (or table)? If so,
what's the datatype of that field?
 
Back
Top