I am displaying the Tooltip for perticular static control throuht the subclassing in the WM_MOUSEMOVE message the problem is whenevr i hold mouse on that image tooltip is displaying continuously . But i want it to disapear after few second . can help me to implement this?
"rekha mekin" wrote: > I am displaying the Tooltip for perticular static control > throuht the subclassing in the WM_MOUSEMOVE message the problem > is whenevr i hold mouse on that image tooltip is displaying > continuously . But i want it to disapear after few second . > can help me to implement this? Why do you subclass static control? You can associate a ToolTip with static control with TTM_ADDTOOL message. If you need to deactivate a ToolTip control, then you send it TTM_ACTIVATE message. To set delay/show times use TTM_SETDELAYTIME message. HTH Alex