1

I have 2 ListViews in my Form. The 1st one has few strings. After doing some modifications, i'm showing the same in the 2nd one. Now, if i want to compare, i have to scroll both the 1st one and 2nd one. Is there any way to capture the scroll event on 1st one and make the 2nd one scroll same distance ?

Thanks, Dev

Dev
  • 987
  • 2
  • 14
  • 32
  • 1
    http://stackoverflow.com/questions/1851620/handling-scroll-event-on-listview-in-c look this thred... – sajoshi Apr 27 '11 at 06:33

1 Answers1

0

Well, I haven't had the chance to do this in recent times, but earlier I used to employ the Sendmessage API

You could make a Sendmessage call, and send a scroll message (look up google to find the exact message) to the second listbox on the scroll event of the first one.

Cyril Gupta
  • 13,505
  • 11
  • 64
  • 87