Multiline Balloon Hints in Delphi -


i changing applications tooltips use balloonhints. test using single line , displayed nicely. when hint text multi-line (i.e existing hints ...

'this test' + #13 + 'hello'+ #13 + 'hello'+ #13 + 'hello'+ #13 + 'hello' 

when displayed in balloonhint, size wrong , whole list of entries offset disappear.

anyone got helpful suggestions ?

update: seems title messes display up. i'll report in qc.

so knew if put #13#10 properties inspector that's putting characters literally string. way instead:

procedure tform2.formcreate(sender: tobject); begin   button1.hint := 'this test' + #13 + 'hello'+ #13 + 'hello'+ #13 + 'hello'+ #13 + 'hello';  end; 

when try in delphi xe, looks fine me. enter image description here

tms's hint component nicer -- if can switch else, try that. try tjvballoonhint in jvcl.


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -