zoukankan      html  css  js  c++  java
  • QTP取出WinListView中对象及子对象的属性

    昨天一位朋友问我如何取到搜狗音乐盒播放列表中歌曲的属性,我做了个小试验,将一些函数组合起来用,能够方便的取出WinListView中元素及子元素的属性。以下代码调试通过。

             ReDim Columns(10)
            Set ōbj = Window("搜狗音乐盒").WinListView("SysListView32")
            cColumns = Obj.ColumnCount()
            For iColumn = 0 To cColumns - 1
             Columns(iColumn) = Obj.GetColumnHeader(iColumn)
            Next
            cItems = Obj.GetItemsCount
            For iItems = 0 To cItems - 1
             str ="第 "&iItems+1&" 首歌曲属性列表"& vbCr
             For iColumn =0 To cColumns - 1
               str = str &Columns(iColumn)&" = "& Obj.GetSubItem(iItems ,Columns(iColumn)) & vbCr
             Next
             Msgbox str
            Next
            Set ōbj = nothing


            重要函数介绍:
            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中子元素的栏位值

    来源 http:/ /softtest.chinaitlab.com/QTP/752224.html

  • 相关阅读:
    BackgroundWorker原理剖析
    委托异步调用时BeginInvoke的陷阱处理
    线程静态在对象缓存中的妙用
    值得珍藏的.NET源码,不保存就没机会了
    .NET 4.5.1 参考源码索引
    .NET 4.5 参考源码索引
    .NET 4.0 参考源码索引
    WWF3.5SP1 参考源码索引
    WCF3.5 SP1 参考源码索引
    .NET 3.5.1 参考源码索引
  • 原文地址:https://www.cnblogs.com/emma/p/1677225.html
Copyright © 2011-2022 走看看