Ian Boyd
Ian Boyd

Reputation: 256651

How to show a .NET Balloon ToolTip?

How do i show an IsBalloon ToolTip in WinForms?

Right now i try:

ToolTip hint = new ToolTip();
hint.IsBalloon = true;
hint.ToolTipCaption = "Hello, world!";
hint.ToolTipIcon = ToolTipIcon.Error;
hint.Show("Please create a world.", myTextBox, 0, 0);

Unfortunately the balloon doesn't point to (0, 0) (relative to the control), but shows up at (0,0) (relative to the control):

What is the correct way to show a .NET Balloon ToolTip?

Upvotes: 18

Views: 18097

Answers (2)

user15812573
user15812573

Reputation: 1

Your last line should be. Mouse_hove Action.

Answer hint.Show("Hello", Me, Me.PointToClient(New Point(0, 0)), 5000) '------------------------

Upvotes: -3

LarsTech
LarsTech

Reputation: 81610

Known bug. Call it twice, first empty:

toolTip.Show(string.Empty, myTextBox, 0);
toolTip.Show("Please create a world.", myTextBox);

From How do I make a tooltip point at a specific label in C#?

Upvotes: 23

Related Questions