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
New line in text property
Re: New line in text property
If you place the code below between the text it will add the new line
+ #COM_OWNER.LineFeed +
+ #COM_OWNER.LineFeed +
Re: New line in text property
Grate thanks.