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
Printable View
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
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