Databound textboxes

  • Thread starter Thread starter kitemad69
  • Start date Start date
K

kitemad69

If i insert more than 9 digits into my databound textbox. I am unable
to tab to the next textbox the column that the textboxe is linked to
is a INT32. Please any suggestions. The maxlength in the column in the
dataset cannot be set because it is an int32 column.
 
If i insert more than 9 digits into my databound textbox. I am unable
to tab to the next textbox the column that the textboxe is linked to
is a INT32. Please any suggestions. The maxlength in the column in the
dataset cannot be set because it is an int32 column.

What's your 10th value?

The max value an Int32 has is 2,147,483,647. If it's greater, then
that might be your problem.
http://msdn.microsoft.com/en-us/library/system.int32.maxvalue.aspx

Thanks,
-tom
 
Back
Top