CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Threaded View

  1. #5
    Join Date
    Jul 2005
    Posts
    266

    Re: CButton Tooltips dont popup intermittently

    This was exactly my problem, when u click the left button hold it move the mouse away from the button the tooltip wont receive the WM_MOUSEMOVE message. The way i worked around it was in the LeftButtonUp handler i just sent a notification to my tooltip ( if i had one ) that the mouse has moved:
    Code:
    			UINT lParam=0;
    			lParam|=point.y<<16;
    			lParam|=(WORD)point.x;
    			m_ToolTip.SendMessage(WM_MOUSEMOVE,0,lParam);
    Last edited by kolkoo; April 11th, 2009 at 02:53 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured