标题:vb.net中怎样把listbox1中选中的内容增加到listbox2中
取消只看楼主
lhj56459897
Rank: 2
等 级:论坛游民
帖 子:19
专家分:47
注 册:2017-7-8
结帖率:66.67%
已结贴  问题点数:20 回复次数:1 
vb.net中怎样把listbox1中选中的内容增加到listbox2中
请教各位:中怎样把listbox1中选中的内容增加到listbox2中
搜索更多相关主题的帖子: vb.net 选中 内容 增加 
2018-09-13 20:35
lhj56459897
Rank: 2
等 级:论坛游民
帖 子:19
专家分:47
注 册:2017-7-8
得分:0 
Dim i, j As Integer
        Dim zjbd As Boolean
        zjbd = False
        If ListBox1.SelectedIndex = -1 Then Exit Sub
        For i = 0 To ListBox1.Items.Count - 1
            If ListBox1.GetSelected(i) = True Then
                For j = 0 To ListBox2.Items.Count - 1
                    If ListBox1.Items(i) = ListBox2.Items(j) Then
                        zjbd = True
                    End If
                Next
                If zjbd = False Then ListBox2.Items.Add(ListBox1.Items(i))
                zjbd = False
            End If
        Next
2018-09-17 23:03



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-489784-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.169705 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved