Text area in Form

  • Thread starter Thread starter ruthness
  • Start date Start date
R

ruthness

Hi guyz,


Is anybody know how can we set the text area in the form which is work the
same like text area in ASP.

We should be able to type the text more than 1 line.
And when we press enter it should be make a new line not go to the other
field.

thx
 
Pressing CTRL-ENTER will line feed in a memo field.

Rick B

Hi guyz,


Is anybody know how can we set the text area in the form which is work the
same like text area in ASP.

We should be able to type the text more than 1 line.
And when we press enter it should be make a new line not go to the other
field.

thx
 
ruthness said:
Hi guyz,


Is anybody know how can we set the text area in the form which is
work the same like text area in ASP.

We should be able to type the text more than 1 line.
And when we press enter it should be make a new line not go to the
other field.

thx

On the Other tab of the text box's property sheet you will find the
property, Enter Key Behavior. This property can be set to "Default" or
to "New Line in Field". The latter setting will give you the behavior
you describe.

If the text box is bound to a field, you may want to that to be a Memo
field so that you can store more than 255 characters in the field.
 
Back
Top