Error 3116--The field is too short for the amount of data you...

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

Guest

Form frmContact has a control bound to tblAlumnus!EmailAddress. This field is
defined as text, 30 characters. The control has the property IsHyperlink =
Yes. Every time I key anything into the control, when I try to close the
form, I get the message "3116 The field is too short for the amount of data
you attempted to add." In the most recent occurrance of this, I had typed
only 16 characters. When I opened tblAlumnus directly I was able to enter the
change with no problem. Obviously, I've done something stupid again. How do I
fix it?
 
Set IsHyperlink as No.
Instead, use the Click (or DblClick) event of the control to SendObject.
 
Back
Top