Click here to Skip to main content
16,010,650 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi ,
i need to show tooltip always when mouse is placed on a control..

actually i know how to create a tooltip.

i should show the tooltip always
Posted
Updated 15-Mar-10 20:04pm
v2

 
Share this answer
 
v3
mugamath wrote:
i should show the tooltip always


If you mean you continuously want to show the tooltip, I suggest you use a simple label and put your text in there.
 
Share this answer
 
private void Form1_Load(object sender, EventArgs e)
        {
            ToolTip btnTip = new ToolTip();
            btnTip.SetToolTip(button1, "Click Here");
        }
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900