Page 1 of 1

New line in text property

Posted: Wed Jun 24, 2015 5:15 pm
by soapagent
In the following code #wrk50a = '2.00pm (10)'.

#COM_OWNER.Set_Label Name(tabSessions + '.Row%' + #x.AsString + '.Other') Text(#wrk50a)

Is there a way to force a line break in this string so that it appears as

2.00pm
(10)

Because of the form layout it will almost always wrap and never does in the right place.

Cheers

Re: New line in text property

Posted: Wed Jun 24, 2015 7:57 pm
by billcros
If you place the code below between the text it will add the new line

+ #COM_OWNER.LineFeed +

Re: New line in text property

Posted: Thu Jun 25, 2015 10:08 am
by soapagent
Grate thanks.