本帖最后由 zz999 于 2010-12-16 13:04 编辑
代码贴上
我想实现每选中一项就显示被选择的数量,
放在WHILE里 ,虽然实现了但一直在刷新。
请教有什么办法不?
另外MSGBOX被选中的序号相加值 不知道如何弄!
请大家帮忙!#include <GUIConstantsEx.au3>
#include <ListViewConstants.au3>
#include <WindowsConstants.au3>
#include <GuiListView.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("窗体1", 405, 294, 302, 218)
$ListView1 = GUICtrlCreateListView("编号|名称", 16, 16, 369, 201)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 1, 235)
_GUICtrlListView_SetExtendedListViewStyle($ListView1, BitOR($LVS_EX_GRIDLINES, $LVS_EX_FULLROWSELECT, $LVS_EX_SUBITEMIMAGES, $LVS_EX_CHECKBOXES))
$LABEL1 = GUICTRLCREATELABEL("2222222", 142, 248, 113, 33)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
Write()
While 1
$nMsg = GUIGetMsg()
RdListView()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func Write()
For $i = 1 To 10
GUICtrlCreateListViewItem($i & '|KB' & $i, $ListView1)
Next
EndFunc ;==>Write
Func RdListView()
$s = 0
$log = _GUICtrlListView_GetItemCount($ListView1)
For $i = 0 To $log
If _GUICtrlListView_GetItemChecked($ListView1, $i) = True Then
$s += 1
EndIf
Next
GUICtrlSetData($LABEL1,$log&"个中的"&$S&"个被选择")
EndFunc ;==>RdListView
|