Where to receive WM_HSCROLL mesages

  • Thread starter Thread starter Just Me
  • Start date Start date
J

Just Me

I have a Windows application that has a usercontrol containing a
richtextbox.

In the overloaded WinProc it has a
case WM_HSCROLL
under m.Msg
and another under WM_NOTIFY

Does WM_HSCROLL work the same in both places?

What about the richtextbox EN_HSCROLL. Is that just a duplication of one or
both the above?

The help does not say much about this.


Thanks in advance for any info
 
I think I figured it out. Please see below and let me know if I'm wrong.
Thanks
I have a Windows application that has a usercontrol containing a
richtextbox.

In the overloaded WinProc it has a
case WM_HSCROLL
under m.Msg
From the usercontrol itself
and another under WM_NOTIFY
From controls on the usercontrol (in this case the richtextbox)
Does WM_HSCROLL work the same in both places? No


What about the richtextbox EN_HSCROLL. Is that just a duplication of one
or both the above?
No, From the richtextbox
 
Back
Top