使两个列表框(ListBox)的选项同步_VB.net_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

使两个列表框(ListBox)的选项同步

作者:黑客防线网安VB教程基地 来源:黑客防线网安VB教程基地 浏览次数:0

本篇关键词:同步选项两个一个
黑客防线网安网讯:1. 在 Form 中添加两个 ListBox 和一个 CommandButton 一个 Timer, 不要改动他们的属性。 2. 在 Form 中添加以下代码: Private Sub Form_Load() Dim X As Integer For X = 1 To 26 List1.A...

1. 在 Form 中添加两个 ListBox 和一个 CommandButton 一个 Timer, 不要改动他们的属性

2. 在 Form 中添加以下代码:

Private Sub Form_Load()
Dim X As Integer
For X = 1 To 26
List1.AddItem Chr$(X + 64)
Next X
For X = 1 To 26
List2.AddItem Chr$(X + 64)
Next X
Timer1.Interval = 1
Timer1.Enabled = True
End Sub
Private Sub Command1_Click()
End
End Sub
Private Sub timer1_Timer()
Static PrevList1
Dim TopIndex_List1 As Integer
TopIndex_List1 = List1.TopIndex
If TopIndex_List1 <> PrevList1 Then
List2.TopIndex = TopIndex_List1
PrevList1 = TopIndex_List1
End If
If List1.ListIndex <> List2.ListIndex Then
List2.ListIndex = List1.ListIndex
End If
End Sub

运行程序当选中其中一个列表框中的某一项后另外一个列表框中的相应项就会被选中

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-14721-1.html
网站维护教程更新时间:2012-04-03 01:13:15  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer