本文介绍了如何检查以使用colomns和行检索列表viwe中的一个字段文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




我有一个listview有两个colomns名字姓氏我需要检索被检查人员的名字,这个代码我可以检索索引而不是文本请帮忙,我需要检索文本并在msgbox上显示



Hi
I have a listview with two colomns name surname i need to retrieve the name of the checked person ,with this code i can retrieve the index but not text please help, i need to retriev text and display it on msgbox

Dim i As Integer
     For i = 0 To listview1.Items.Count - 1

         If listview1.Items(i).Checked = True Then
             MessageBox.Show(i)
         End If

     Next i

推荐答案

MessageBox.Show(ListView1.Items(i).Text)


这篇关于如何检查以使用colomns和行检索列表viwe中的一个字段文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 06:18