Examples Delphi

Title: How to make a 2-line hint
procedure TForm1.FormShow(Sender:TObject);
begin
Button1.Hint:='Line 1'+#13#10+'Line2';
end;
{#13#10will break a line }