I'm subclassing a HScrollBar and overriding the WndProc method:
protected override void WndProc(ref Message m)
{
base.WndProc (ref m);
System.Diagnost ics.Debug.Write Line((Msg)m.Msg );
}
Msg is an enum of all WM_ constants. I'm getting 4 mysterious numbers
however: 8468,233,234,49 457 when I scroll left and right, or thumb.
Can anyone tell me what these constants are?
protected override void WndProc(ref Message m)
{
base.WndProc (ref m);
System.Diagnost ics.Debug.Write Line((Msg)m.Msg );
}
Msg is an enum of all WM_ constants. I'm getting 4 mysterious numbers
however: 8468,233,234,49 457 when I scroll left and right, or thumb.
Can anyone tell me what these constants are?
Comment