I have the following code in a program I just wrote.
Control c = this.contextMenuStrip1.SourceControl;
if (myTag >= 63 && myTag <= 65 && !Option)
{
this.toolTip1.Show(tipMessages[myTag + 7],
c,
new Point(c.Size));
}
else
{
this.toolTip1.Show(tipMessages[myTag],
c,
new Point(c.Size));
}
If I leave the code as is, I get the wrong messageif I do "what's this" right after Option changes. If I duplicate each of the shows this does not happen. Anyone have any idea of what could be going on?
Thanks, Neal