Editbox Right click problem
-
I have a editbox in my dialog box. When I use right click on the editbox, it will display a menu. I would like to know how to disable it during the program is running? Please help!
-
Derive a class from CEdit.(CMyEdit->CEdit). Override the WM_RBUTTON Click. Create an object of CMyEdit . CMyEdit m_MyEdit.(Associate this with the edit control in which you want to show the menu when right button of the mouse is pressed)
Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_
-
Derive a class from CEdit.(CMyEdit->CEdit). Override the WM_RBUTTON Click. Create an object of CMyEdit . CMyEdit m_MyEdit.(Associate this with the edit control in which you want to show the menu when right button of the mouse is pressed)
Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_
-
Just override the right button click and do nothing in the function. If you are asking them in context to what would happen with the other edit boxes you can associate a CEdit type of control variable and leave them as they are with default functionalities
Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_
-
Just override the right button click and do nothing in the function. If you are asking them in context to what would happen with the other edit boxes you can associate a CEdit type of control variable and leave them as they are with default functionalities
Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_
-
I have a editbox in my dialog box. When I use right click on the editbox, it will display a menu. I would like to know how to disable it during the program is running? Please help!
If you derived from each class for controls you have a most power than to use in the standard case
_**
**_
WhiteSky