textbox control

  • Thread starter Thread starter wd1153
  • Start date Start date
W

wd1153

Hi,

I am using a textbox control for the long string field (up
to 3000 char)in database(sql server). But the error
indicating the limit length of the textbox is 128. Is
there anyway I change the setting of the textbox to enable
it take more chars. Or is there any other control I can
use to display the long string? thanks
 
A textbox can hols a max of 255 characters but may be limited by your setting in
the field size property of he field in your table. Any string larger than 255
characters requires the Memo data type. I believe a Memo can hold up to 64,000
characters.
 
Back
Top