CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 1999
    Location
    Andrapradesh, India
    Posts
    1

    Mouse messages not accepted

    Hi,
    I have made an application in which i added a CRichEditCtrl variable named m_rich, in my view class(derived from CView).
    Also, In the function OnCreate , i wrote as:
    m_rich.Create(ES_AUTOVSCROLL | ES_MULTILINE | ES_WANTRETURN | WS_CHILD | WS_VISIBLE | WS_VSCROLL , rect, this, 1);
    Now, on the mouse messages functions as OnMouseMove etc. , the compiler does not execute the code in them.
    However, the same code in OnKeyDown function runs well.
    Why is this discrepency with Mouse messages?
    ~Anshuman


  2. #2
    Guest

    Re: Mouse messages not accepted

    Double check and make sure you have entries in your message maps for this message....


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