Title: TStatixText with several lines
Question: TStatixText with several lines
Answer:
Simply separate the lines with a #13 character.
Example
procedure TForm1.Button1Click(Sender: TObject);
begin
StaticText1.Caption:='Linea Uno'+#13+'Linea Dos';
end;
Ah!, remember do not put its AutoSize property to TRUE...