Hello!
I want to count the items checked and do not know how I can help someone
Thanks in advance!
I want to count the items checked and do not know how I can help someone
Thanks in advance!
[ autoit ]
#include #include $Debug_LV = False ; Check ClassName being passed to ListView functions, set to True and use a handle to another control to see it work _Main() Func _Main() Local $hListView GUICreate("ListView Get Item Checked State", 400, 300) $hListView = GUICtrlCreateListView("", 2, 2, 394, 256) _GUICtrlListView_SetExtendedListViewStyle($hListView, BitOR($LVS_EX_FULLROWSELECT, $LVS_EX_CHECKBOXES)) $Label = GUICtrlCreateLabel("0",7,260,100,14) GUISetState() ; Add columns _GUICtrlListView_AddColumn($hListView, "Column 1", 100) ; Add items _GUICtrlListView_AddItem($hListView, "Row 1: Col 1", 0) _GUICtrlListView_AddItem($hListView, "Row 2: Col 1", 1) _GUICtrlListView_AddItem($hListView, "Row 3: Col 1", 2) ; Check item 2 _GUICtrlListView_SetItemChecked($hListView, 1) _GUICtrlListView_SetItemChecked($hListView, 0) GUICtrlSetData($label, _GUICtrlListView_GetItemChecked($hListView, -1)) ; Loop until user exits Do Until GUIGetMsg() = $GUI_EVENT_CLOSE GUIDelete() EndFunc ;==>_Main