Click here to Skip to main content
15,797,721 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Changing Display gamma Pin
Valentinor10-Jul-18 0:33
Valentinor10-Jul-18 0:33 
GeneralRe: Changing Display gamma Pin
Jochen Arndt10-Jul-18 0:50
professionalJochen Arndt10-Jul-18 0:50 
GeneralRe: Changing Display gamma Pin
Valentinor10-Jul-18 2:10
Valentinor10-Jul-18 2:10 
QuestionMouse Wheel scrolling support for MFC application. Pin
Member 139038189-Jul-18 1:01
Member 139038189-Jul-18 1:01 
AnswerRe: Mouse Wheel scrolling support for MFC application. Pin
Jochen Arndt9-Jul-18 1:52
professionalJochen Arndt9-Jul-18 1:52 
GeneralRe: Mouse Wheel scrolling support for MFC application. Pin
Member 139038189-Jul-18 20:16
Member 139038189-Jul-18 20:16 
GeneralRe: Mouse Wheel scrolling support for MFC application. Pin
Victor Nijegorodov9-Jul-18 21:37
Victor Nijegorodov9-Jul-18 21:37 
GeneralRe: Mouse Wheel scrolling support for MFC application. Pin
Member 139038189-Jul-18 22:04
Member 139038189-Jul-18 22:04 
yes .....

(class CFormView : public CScrollView


class CScrollView : public CView)


in our application we are deriving the class from the CView like below.

class CCommonEDM_AVitarView : public CView

in above derived call i have handled the OnMouseWheel function. but it's not hitting the code while scrolling the mouse wheel.

code :
Header file:

class CCommonEDM_AVitarView : public CView
{
protected: // create from serialization only
CCommonEDM_AVitarView();
DECLARE_DYNCREATE(CCommonEDM_AVitarView)
public:
afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);

};
source file :

IMPLEMENT_DYNCREATE(CCommonEDM_AVitarView, CView)
BEGIN_MESSAGE_MAP(CCommonEDM_AVitarView, CView)
ON_WM_MOUSEWHEEL()
END_MESSAGE_MAP()

BOOL CCommonEDM_AVitarView::OnMouseWheel(UINT fFlags, short zDelta, CPoint point)
{
TRACE0("in CCommonEDM_AVitarView:: OnMouseWheel function");
return CView :: OnMouseWheel(fFlags, zDelta, point);
}

i am not understanding how internal child windows are working with mouse wheel scrolling. but main window is not working..
GeneralRe: Mouse Wheel scrolling support for MFC application. Pin
Jochen Arndt10-Jul-18 1:10
professionalJochen Arndt10-Jul-18 1:10 
GeneralRe: Mouse Wheel scrolling support for MFC application. Pin
Member 1390381810-Jul-18 23:50
Member 1390381810-Jul-18 23:50 
GeneralRe: Mouse Wheel scrolling support for MFC application. Pin
Jochen Arndt11-Jul-18 0:10
professionalJochen Arndt11-Jul-18 0:10 
QuestionObject pointer as method argument Pin
_Flaviu8-Jul-18 1:43
_Flaviu8-Jul-18 1:43 
AnswerRe: Object pointer as method argument Pin
Richard MacCutchan8-Jul-18 8:23
mveRichard MacCutchan8-Jul-18 8:23 
GeneralRe: Object pointer as method argument Pin
_Flaviu8-Jul-18 20:57
_Flaviu8-Jul-18 20:57 
NewsRe: Object pointer as method argument Pin
Richard MacCutchan9-Jul-18 4:01
mveRichard MacCutchan9-Jul-18 4:01 
AnswerRe: Object pointer as method argument Pin
CPallini8-Jul-18 21:59
mveCPallini8-Jul-18 21:59 
GeneralRe: Object pointer as method argument Pin
_Flaviu9-Jul-18 6:45
_Flaviu9-Jul-18 6:45 
QuestionMFC Static Library Project Pin
Richard Andrew x647-Jul-18 17:04
professionalRichard Andrew x647-Jul-18 17:04 
AnswerRe: MFC Static Library Project Pin
Victor Nijegorodov7-Jul-18 22:48
Victor Nijegorodov7-Jul-18 22:48 
GeneralRe: MFC Static Library Project Pin
Richard Andrew x648-Jul-18 4:26
professionalRichard Andrew x648-Jul-18 4:26 
QuestionUsing fstream with USB Serial Port Pin
OscardelaGrouch6-Jul-18 21:53
OscardelaGrouch6-Jul-18 21:53 
AnswerRe: Using fstream with USB Serial Port Pin
Richard MacCutchan7-Jul-18 0:25
mveRichard MacCutchan7-Jul-18 0:25 
GeneralRe: Using fstream with USB Serial Port Pin
OscardelaGrouch7-Jul-18 7:39
OscardelaGrouch7-Jul-18 7:39 
GeneralRe: Using fstream with USB Serial Port Pin
Richard MacCutchan7-Jul-18 7:52
mveRichard MacCutchan7-Jul-18 7:52 
GeneralRe: Using fstream with USB Serial Port Pin
OscardelaGrouch7-Jul-18 7:55
OscardelaGrouch7-Jul-18 7:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.