Error message with combo box

  • Thread starter Thread starter Pat
  • Start date Start date
P

Pat

I have a combo box that I want to populate the rest of
the address fields with and I finally got that part to
work and now I'm getting an error message on my form that
says "The value you entered isn't valid for this field.
For example, you may have entered text in a numeric field
or a number that is larger than the fieldsize setting
permits."

I have checked every field in my form and the fieldsize
settings are correct (as far as I can tell).

Can anyone help with this? I need help as soon as
possible.

Thanks,
Pat
 
Hi Pat

Your combo box would have the following values:mycombo.Column(0),
mycombo.Column(1), etc.etc

After selecting a value from the list, the other fields would be filled in from
the combo box values: i.e. Text1 = mycombo.column(0), etc.etc.

Maurice
 
Have you checked your bound column. This will be the actual data that is
stored. Check the data typoe for this.

Kelvin Lu
 
Back
Top