标题: 急! 知道的进来看一下 CheckItemProperty问题 [打印本页] 作者: dinglingxdd 时间: 2009-12-2 11:58 标题: 急! 知道的进来看一下 CheckItemProperty问题 public Function IsCheckAll()
set objListView=Window("A").Window("B").WinListView("SysListView32")
cItems = objListView.GetItemsCount
IsCheckAll=true
For varItem=1 to cItems
If objListView.CheckItemProperty(varItem,"state","2")=false Then
IsCheckAll=false
Exit Function
End If
Next
End Function
上面的一段代码,调试的时候一直报参数不正确,有没有知道原因的,在线等 !