Dent Posted May 29, 2019 Posted May 29, 2019 So I've created a ListView with 13 columns and depending on the search there are various rows returned. The ListView has the extended style that adds checkboxes to each row. Is it possible to export the checked rows into a 2D array? I haven't been able to find a ControlID for the checkboxes when they are created just from the ListView. After the required checkboxes are selected I would want to click a button to export the rows into the array. All help gratefully received.
Exit Posted May 29, 2019 Posted May 29, 2019 And where is the code? App: Au3toCmd UDF: _SingleScript()
Zedna Posted May 29, 2019 Posted May 29, 2019 (edited) $n = _GUICtrlListView_GetItemCount($ListView1) For $i = 0 To $n - 1 $state = _GUICtrlListView_GetItemChecked($ListView1, $i) If $state = True Then ... Next Edited May 29, 2019 by Zedna Dent 1 Resources UDF ResourcesEx UDF AutoIt Forum Search
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now