CToolTipCtrl problem
-
Hi all, I am using CToolTipCtrl as follows:
m_ToolTip.AddTool(this,sToolTip,rc,1);
m_ToolTip.SetMaxTipWidth(MAX_PATH);
m_ToolTip.Activate(TRUE);
m_ToolTip.SetWindowPos(&wndTopMost,0,0,0,0,SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOOWNERZORDER);
MSG msg;
msg.hwnd = m_hWnd;
msg.message = WM_MOUSEMOVE;
msg.wParam = 0;
msg.lParam = MAKELONG(point.x , point.y);
msg.time = 0;
msg.pt.x = point.x;
msg.pt.y = point.y;
m_ToolTip.RelayEvent(&msg);the tool tip is shown 100% ok, but when i log on to this site: http://news.sky.com/skynews/home[^] the tool tip stops from working. i think there is a control on that site that does something to my tool tip. what am i doing wrong? thanks in advanced Yaron
Interface basics click here : http://www.codeproject.com/com/COMBasics.asp don't forget to vote :)