Mega Code Archive

 
Categories / Delphi / Examples
 

Multilines hint

Title: Multilines hint Creating multiline hint is not so difficult. Set ShowHint of Button1 to True and try this: procedure TForm1.FormCreate(Sender: TObject); begin Button1.Hint:='Greatis'+#13+'Delphi Pages'; end;