2
I have an application where a TLabel
receives a line from a TMemo
,
however the form
that I’m exhibiting has to be small, and the information is great.
My idea is that when arriving at a certain number of characters the sentence would continue at the bottom line.
So I’m using the function below to count the number of characters in the first line of the TMemo
tamMemoCaption:=inttostr(Length(form1.memo5.Lines.text));
What I need is that when the size reaches 24 for example the text of TMemo
, from there he break to the bass line or a new TLabel
receive the information
I tried to use the option WordWrap
, but with no results.
Some guidance?
with small adjustments remained as I needed !
– Guilherme Lima