For i = 1 to ProcessCount
ProcessName = Dialog("Windows 任务管理器").WinListView("SysListView32").GetItemProperty(i, "text")
If strcomp("QQ.exe", ProcessName) = 0 Then
Dialog("Windows 任务管理器").WinListView("SysListView32").Select(i)
Exit For
End If
Next作者: yinzhi 时间: 2008-6-20 10:39
应该是循环来处理的,这样才能遍历啊作者: yxq_66 时间: 2008-10-16 08:39
大家好,借此来问点问题:
GetItemProperty(i, "text")
我想问一下 上面的text是什么啊,可以替换成其他的吗?
请问一下 怎么使用SetTOProperty?
怎么往 winlistview 中设置值,前面所说的都是取值??作者: yxq_66 时间: 2008-10-16 09:00
GetItemProperty(i, "text") 哦 这个我有点明白了 可是 winlistview不是也可以有好几列的吗?
我是给某行某列的一个格 也就类似table中的单元格 赋值 该怎么做呢?作者: lchappy 时间: 2009-3-6 16:08
GetItemProperty(i, "text")实际取的是第i行第1列的内容,如何取到第i行第n列的内容?谁来解答一下。。。作者: testlab 时间: 2009-3-10 11:19
如何取第i列的所有值?作者: testlab 时间: 2009-3-10 11:32
知道了,http://www.51testing.com/?179522 ... e_itemid_78583.html作者: lchappy 时间: 2009-3-10 16:05
果然可以啊!太感谢了!学到东西了。正如所说的重要函数:
ColumnCount函数:Returns the number of columns in a (report-style) list-view control. -----返回list-view有多少栏位
GetColumnHeader函数:Returns the text header of the specified (report-style) list-view column.-----返回list-view的栏位名
GetItemsCount函数:Returns the number of items in the combo box list.-----返回list中元素个数
GetSubItem函数:Returns the text value of a (report-style) list-view sub-item. -------返回list中子元素的栏位值