When displaying long text in a text label, please enable the option to wrap the text with, or without hyphenation. Today, the lack of hyphenation sometimes makes the text difficult to read.
I meant "Option"...
Hi @ChrisKoenig
I found a work around by doing this for a label:
Find out the maximum lengh of characters that fits into the box without splitting the word in two by typing the maximum you can in the box then do:
Len(Label1.Text) to give you the number of characters you need to replace at.
Then,
Set the Text property of the label to
If(Len(Label1.Text) >= /*Number of characters*/45, Replace(Label1.Text),44,0,"-"),Label1.Text)
Hope this helps!
Scott.
never-displayed