本文介绍了VB6 ListBox控件.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

VB6列表框控件.

我有两个ListBox,(list1和list2)
当我更改/移动list1的向下滚动/向上滚动时,我希望list2向下滚动/向上滚动与list1相同.

VB6 ListBox Control.

I have a two ListBox, (list1 and list2)
When I change/Move the scroll(down/up) of list1 I want the list2 to scroll down/up same with the list1.

推荐答案

Private Sub listboxID_Click()
  listboxName.ListIndex = listboxID.ListIndex
End Sub
Private Sub listboxName_Click()
  listboxID.ListIndex = listboxName.ListIndex
End Sub



Private Sub lstBox1_Scroll()
   lstBox2.TopIndex = lstBox1.TopIndex
End Sub



问候



Regards


这篇关于VB6 ListBox控件.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 05:12