Hi..
I want two independent windows to be scroll synchronously using WIN32 C++. Right now whichever window in focused, scroll is working for only that window. But my requirement is like, with a single scroll both the windows should scroll..some one suggested me to send same scroll message for other window also...but MSDN says WM_HSCROLL message executes only for the active window.....Please suggest some resolution for this.... below is the message sent for scrolling
FORWARD_WM_MOUSEWHEEL((HWND) *EegOut, x, y, zDelta, fwKeys, SendMessage);
sfter this sendmessage sends WM_HSCROLL message..
please he