用VB或VBA语言,做两个多列(2列)列表框之间数据的相互转移,语言怎么写?

我做的程序由第一列表(单选)向第二个列表框转移时,第二个列框的第一行可以出现我选中的第一列表框的内容,但到第二行时,第二列框只能显示第一列能依次显示第二列除了第一个其他都... 我做的程序由第一列表(单选)向第二个列表框转移时,第二个列框的第一行可以出现我选中的第一列表框的内容,但到第二行时,第二列框只能显示第一列能依次显示第二列除了第一个其他都是空的,
Private Sub CommandButton1_Click()
Dim j%
With ListBox2
.ColumnCount = 2
.ColumnWidths = "55,20"
.BoundColumn = 0
.ColumnHeads = True
For j = 0 To ListBox1.ListCount - 1
If ListBox1.Selected(j) Then
.AddItem ListBox1.List(j)
.List(j, 1) = ListBox1.List(j, 1)
ListBox1.RemoveItem ListBox1.ListIndex
End If
Next
End With
End Sub
展开
 我来答
techAsp
2012-11-08 · TA获得超过182个赞
知道小有建树答主
回答量:179
采纳率:0%
帮助的人:105万
展开全部
给你个实例吧,到参考的网址去下载。 从里面摘了2个过程
' 移动一条
Private Sub MoveOneItem(SrcList As ListBox, DesList As ListBox)

If SrcList.ListCount > 0 Then
If SrcList.ListIndex < 0 Then
SrcList.ListIndex = 0
End If

DesList.AddItem SrcList.List(SrcList.ListIndex)
DesList.ItemData(DesList.NewIndex) = SrcList.ItemData(SrcList.ListIndex)

ListDelItem SrcList, SrcList.ListIndex
End If
End Sub

' 全体移动
Private Sub MoveAllItem(SrcList As ListBox, DesList As ListBox)
Dim i As Integer

i = 0
Do While i < SrcList.ListCount
DesList.AddItem SrcList.List(i)
DesList.ItemData(DesList.NewIndex) = SrcList.ItemData(i)
i = i + 1
Loop

SrcList.Clear
End Sub

参考资料: http://www.codefans.net/soft/8326.shtml

ryuginka
2012-11-02 · TA获得超过956个赞
知道小有建树答主
回答量:2839
采纳率:0%
帮助的人:749万
展开全部
举个例子说明你的需求,没看懂
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式