rewturn to line

  • Thread starter Thread starter Warrio
  • Start date Start date
W

Warrio

Hello!

Is it possible to concatenate a label with two sentences separated with a
return to line?
I have tried :
myField1 & chr(10) & chr(13) & myField2
but this shows two squares instead of the return to line beacause the asci
code 10, 13 are not recognized in the report

Thanks for any suggestion
 
I am not sure what "myField1" and "myField2" represent in your code; but, it
is possible to have a label caption with more than one line, for example:

Me.Label1.Caption = "This is a" & Chr(13) & Chr(10) & "multiline label."

or

Me.Label1.Caption = "This is a" & vbCRLF & "multiline label."
 
Back
Top