HScrollBar messages

J

john doe

I'm subclassing a HScrollBar and overriding the WndProc method:

protected override void WndProc(ref Message m)
{
base.WndProc (ref m);

System.Diagnostics.Debug.WriteLine((Msg)m.Msg);
}

Msg is an enum of all WM_ constants. I'm getting 4 mysterious numbers
however: 8468,233,234,49457 when I scroll left and right, or thumb.

Can anyone tell me what these constants are?
 
O

Ollie Riches

have you tried using spy++, I am pretty sure it will tell both the number
and the assoicated message name

HTH

Ollie Riches
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top