Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the On_WM_MENUSELECT message for the menu item click event. but at the compiler throws following error. error C2660: 'CSplashToolBarWnd::OnMenuSelect' : function does not take 4 arguments e:\splashid\splashidtoolbar\splashidtoolbar\splasheditwnd.h 69 SplashIDToolBar

share|improve this question

1 Answer

Well, it really does not take 4 arguments:

afx_msg void OnMenuSelect( 
   UINT nItemID, 
   UINT nFlags, 
   HMENU hSysMenu  
);                       // only 3 arguments
share|improve this answer
In WTL it takes four arguemets: LRESULT OnMenuSelect(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) refer ecs.syr.edu/faculty/fawcett/handouts/cse778/WTL/Include/… adding four arguements that problem has been solved – Mahantesh Nov 30 '10 at 8:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.