ToolTip problem now :) (original) (raw)

Good day to everyone,

I am trying to make a ToolTip for a couple of TextBoxes. What I do is:

create a new ToolTip and make it a Balloon:

ToolTip myToolTip = new ToolTip();
myToolTip.IsBalloon = true;

then I add the title and show it:

myToolTip.ToolTipTitle = "Hi there";
myToolTip.Show("welcome", TextBox1);

Well, the problem is that the balloon tile will point to a weird location.
Can I somehow make it point directly to the TextBox?

Here a sreenshot of the code and the result: