TBalloonHint usage

Hi,

I can't find any doc/help/forum to understand how to use TBalloonHint component.

If i put title and description, on ShowHint nothing happen.

I need to show programmatically a balloon (or a hint if I can't use balloon) at specific coordinates.

Thanks.
Claudio

I cannot see an issue here. Do you specify where you want to see the hint?


Example:

procedure TForm5.Button1Click(Sender: TObject);
begin
   BalloonHint1.Title := 'Hello world';
   BalloonHint1.Description := 'Description';
   BalloonHint1.ShowHint(button1);
end;

This displays a balloon hint near the button that triggers the balloon hint to display.

Ok, I was calling ShowHint without arguments,

calling ShowHint with my control is working.

Thanks.