CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 2002
    Posts
    35

    Rich edit control

    I have incorperated rich edit control in my MFC dialog. When selction of data in the rich edit contrl text box is made and right button of mouse is clicked ...It does not show the pop up to copy paste etc.

    Can anyone tell me how to do so.

    Thanks

  2. #2
    Join Date
    May 2002
    Location
    Romania
    Posts
    929
    By default, RichEdit Ctrl from Resource Editor does not have this feature. You have to implement it by yourself, meaning you have to add a popup menu and activated it on OnRButtonDown. Each ID From that menu will have an attached method to perform this action, so you will need a CRichEditCtrl derivated class in your code.

    Snakekaa
    Move like a snake, think like a snake, be a snake !!!

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