I have a series of textboxes with which I want to associate a tooltip with. This tooltip would appear when the user clicks on a black textbox, then disappear when they start typing or when they leave the textbox. The tooltip should be placed directly above the textbox, this is why I'm using the ToolTip.Show method instead of the ToolTip.SetTooltip method (it lets me control the placement).
So far, for each textbox I have 3 methods; Enter, Leave and TextChanged:
tt = new ToolTip();
String message = "some message"; //different for each textbox
private void textbox1_Enter(object sender, EventArgs e)
{
if (textbox1.Text == String.Empty)
{
tt.Show(message, textbox1, new Point(0, -2 * textbox1.Height));
}
}
private void textbox1_Leave(object sender, EventArgs e)
{
tt.Hide(textbox1);
}
private void textbox1_TextChanged(object sender, EventArgs e)
{
tt.Hide(textbox1);
}
Now consider two textboxes. Clicking on textbox1 triggers the tooltip as expected, in the expected location, then exiting textbox1 causes it to disappear. Trying the same thing on textbox2 also works. Now if I click on textbox1 again, the tooltip has the proper message, but the placement is in the same place as if I had clicked on textbox2. Not only that, but the shape of the tooltip is the same as for textbox2, meaning that my message gets truncated. (The message for textbox1 is longer than the one for textbox2). Does anyone know what might be causing this?

ToolTip t1 = new ToolTip()forTextBox1andToolTip t2 = new ToolTip()forTextBox2– asifsid88 Feb 6 at 14:58tt.Showyou set it's X, Y and width such that it's position is moved or width is increased. Try to do with JS if you're comfortable – asifsid88 Feb 6 at 15:07ToolTip.Showmethod lets me set the position, but I don't think I can modify it after that. – H H Feb 6 at 15:30