As
System.EventArgs) Handles PerformVscroll.Click
'SendMessage(rtb2.Handle, WM_VSCROLL, SB_LINEDOWN, 0)
SendMessage(lb1.Handle, WM_VSCROLL, SB_LINEDOWN, 0)
End Sub
Private Sub handleScroll(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles rtb2.VScroll
Console.WriteLine("Scrolling")
End Sub
Private Sub ScrollUP_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles ScrollUP.Click
'SendMessage(rtb2.Handle, WM_VSCROLL, SB_LINEUP, 0)
SendMessage(lb1.Handle, WM_VSCROLL, SB_LINEUP, 0)
End Sub
End Class
Tree View or Checked List View do not have onVScroll event.
"One Handed Man [ OHM ]"
<terry_burnsREMOVE%FOR%NO%
[email protected]>
wrote in message Your going to have to use the Windows API to make the other control
scroll
down. Trap the onVScroll event of the control which you want