multi-line textbox ?

  • Thread starter Thread starter Agnes
  • Start date Start date
A

Agnes

Does the textbox in vb.net (alllow input multi-line ??)
In vfp, there is "editbox" , which allow user to input several lines data
and save in the table 'as memo field'
However, I can't find the similar thing in vb.net and sql server (ntext ?)
please help
Thanks
 
OH, I know that I can set multi-line as true in Textbox Now,
However, Should i set the source as "ntext" in sql table ??
Thanks
 
OH, I know that I can set multi-line as true in Textbox Now,
However, Should i set the source as "ntext" in sql table ??


Are you storing Unicode data? If you are use ntext, otherwise standard text
will be fine for ASCII or non-unicode data.
 
Back
Top