Double right click
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
;)Any one can show me step wise how to implement a double right click on a specified item in vc++(in single document MFC application).
simple wise : press "ctrl + w" into MFC ClassWizard , selected the project and class name , objects id which you will added the message in Message Maps tab . select WM_RBUTTONDBLCLK and press add Function . OR , write code in .h /////////////////////..... afx_msg void OnRButtonDblClk(UINT nFlags, CPoint point); ......................... //}}AFX_MSG DECLARE_MESSAGE_MAP() in cpp ........... ON_WM_RBUTTONDBLCLK() //}}AFX_MSG_MAP END_MESSAGE_MAP() sorry for my poor english