Mateo Posted May 20, 2021 Posted May 20, 2021 Hello everyone, I'm trying to create a virtual listview with checkboxes and I'm not succeeding (checkboxes just do not appear ...) Would appreciate help. The code: Global $idListView = GUICtrlCreateListView("Item 1|Item 2", 15, 40, 100, 260, $LVS_OWNERDATA, BitOR($WS_EX_CLIENTEDGE, $LVS_EX_CHECKBOXES)) Many thanks in advance. mateo.
Lion66 Posted July 4, 2021 Posted July 4, 2021 If still relevant. You have not led the full code and probably therefore did not receive the answer. Have you been looking for an answer to your question on the forum? Are you sure that you need a virtual lv? Maybe the standard lv from the box box will be enough? The fact is that when you turn on a virtual style $LVS_OWNERDATA, the program does not automatically handle the items, you must take care of it yourself through WM_NOTIFY. It is not quite simple for beginners, and coping an example when everything works, then it may be necessary to change something, and it will be a problem! In any case, read the examples on the LINK. Download the zip file and see examples LvStandard.au3 for standard ListView with checkboxes and LvVirtArrayIcons.au3 for Virtual ListView with checkboxes. Good luck.
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