在WinListView中如何使用GetItemsCount方法得到的变量
A =Window("系统管理").WinListView("SysListView32").GetItemsCount,这个语句把列表的行数赋值给了变量A,那么Window("系统管理").WinListView("SysListView32").Select A这个语句正确吗?能选中列表的最后一条记录吗? Syntax DetailsArgumentDescriptionobjectA test object of type WinListView.ItemRequired. A Variant value. The item to select from the list-view control. The item value (with quotes) or numeric index (without quotes) can denote the item. The first item in a list-view control is numbered 0. BUTTONOptional. A predefined constant or number. See the Constants table, below. The mouse button used to click the object. Default = micLeftBtn (0). OffsetOptional. An Integer value. The horizontal offset (in pixels) of the click location relative to the left margin of the item’s text. This argument can be used only if the BUTTON argument is defined. Default = -1 (middle of the object).
我就想请教这个具体问题
帮助文档我很早就看了。理论是理论,实践是实践,我现在就想解决这个具体问题。谢谢上面朋友的帮助 遇到不明确的问题的时候先查帮助是最好的选择~注意上面红色的标注,最后一条记录应该是A-1
回复 3# 的帖子
说明你看帮助很不仔细。。。我还特地用红色标注了,你还是无视了。。。用了你的方法还是不行
用了你的方法还是不行,就是选列表中的第几列数据会出错。要是录制脚本会发现Select后面跟的那个值是记录在数据库中的一个行号,即在那个数据库的表中是第几行。我感觉通过数据库选中一条记录太麻烦,就想很简单直观的通过列表选中某一条记录。不知道为什么不行,还有其他方法选中列表中的某一条记录吗?急切需要帮助 我的方法是让你多研究下帮助。。。你指的用了我的方法是用了什么方法?.Select 0 应该就是会选中界面上的第一条记录的,建议你把代码及界面的截图贴出来 我叼!
Dim MM
A =Window("系统管理").WinListView("SysListView32").GetItemsCount
可以用A做for 循环
for i=0 to A-1
MM=Window("系统管理").WinListView("SysListView32").Getitem("喜欢哪个选哪个号")
Window("系统管理").WinListView("SysListView32").Select MM
大家都非常热情
大家都非常热情,大家的指导也很有用,谢谢了 为啥我GetItem方法的时候老是报错啊, 代码如下:msgbox Dialog("Windows 任务管理器").WinListView("SysListView32").GetItemsCount
mm=Dialog("Windows 任务管理器").WinListView("SysListView32").GetItem(0)
Dialog("Windows 任务管理器").WinListView("SysListView32").Select mm
第一句可以正确取出行数, 但跑到第2句就报错, 如图: 顶下, 还望高手解答~~
页:
[1]