I am using the Tooltip class like this…
where ctrl is a Picture ctrl.
ToolTip oTooltip = new ToolTip();
oTooltip.SetToolTip(ctrl, “The algorithm has been completed successfully”);
oTooltip.ShowAlways = true;
When the form is loaded, teh tooltip is shown… it shows up some two or three time whenever i hover the mouse obver it but from the fourth hover it stops coming/sghowing.
is there anything that i need to set.?
I had a similar issue not too long ago. To work around the problem, I subscribed to the control’s
MouseEnterevent and toggled between setting theActiveproperty of theToolTipfromfalsetotrue. My code looked something like this:Hope that helps.