insert a blank line

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

Guest

Hello. To create a special effect I need that my text only appears on the
second line and for that I need to insert an blank line the the textbox
control of the report.

Is it possible?

Regards
 
Returns an error: "YOU MAY HAVE ENTERED AN OPERAND WITHOUT AN OPERATOR"

i USED: (chr(13) & chr(10) & [Observacoes]


THANKS
 
Enter the suggested expression exactly as written in the text box Control
Source, except substitute the field name (as you have done). Your posted
expression has an extra parentheses at the beginning and no = sign.

Marco said:
Returns an error: "YOU MAY HAVE ENTERED AN OPERAND WITHOUT AN OPERATOR"

i USED: (chr(13) & chr(10) & [Observacoes]


THANKS



RBear3 said:
= chr(13) & chr(10) & "This is line 2."


--
Hope that helps!

RBear3
..
 
Back
Top