如:我选择了3个,那如何取得这个3个的Key值!
注:3不是个定值!:P

解决方案 »

  1.   

    for i=1 to listview1.listitems.count
        if listview1.listitems.item(i).selected=true then
      

  2.   

    dim itemx as listitem
    for each itemx in listview1.listitems         
         if itemx.Selected=True then
             debug.print itemx.Key
         endif
    next
      

  3.   

    已经做出来了!好像只能用For来做:)来者毕送!