I have an application where a TLabel
receives a line of a TMemo
,
But the form
that I'm displaying has to be small, and the information is large.
My idea is that when it reaches a certain number of characters the sentence would continue on the bottom line.
So I'm using the function below to count the number of characters in the first line of TMemo
tamMemoCaption:=inttostr(Length(form1.memo5.Lines.text));
What I need is that when the size reaches 24 for example of the text of TMemo
, from there it will break to the bottom line or a new TLabel
receive the information
I tried to use the WordWrap
option, but no results.
Any guidance?