程序代码: |
Dim ItemC As ListView.ListViewItemCollection = Me.ListView1.Items
For Each Item As ListViewItem In ItemC
MsgBox(Item.SubItems(0).Text)
Next
程序代码: |
Dim ItemC As ListView.SelectedListViewItemCollection = Me.ListView1.SelectedItems
For Each Item As ListViewItem In ItemC
MsgBox(Item.SubItems(2).Text)
Next
[本日志由 tiancao1001 于 2019-12-25 08:55 PM 编辑]
|
暂时没有评论
发表评论 - 不要忘了输入验证码哦! |