I have form with 4 buttons and Image. For all these controls i have added tool tip by using the following code
ToolTip objToolTip=null;
.....
public Form1()
{
objToolTip=new ToolTip();
}
.....
//Used to set the button lables based on Data from database
private void SetButtonlabels()
{
objToolTip.SetToolTip(btnSAPConnect, "Connects to SAP");
}
the problem is, Once the form is opened, the tool tips are not coming immediately even if we move our mouse over the control. But Once i click on the form, then tool tips are working properly. I am not sure which is causing the problem.
Can anybody please help to fix this issue.