How to set a checkbox to checked state in a ListView using Autohotkey
Posted
by Itay Levin
on Stack Overflow
See other posts from Stack Overflow
or by Itay Levin
Published on 2010-06-10T16:57:50Z
Indexed on
2010/06/10
17:02 UTC
Read the original article
Hit count: 739
Hi, I am writing a Autohotkey script that need to 'check' and 'uncheck' checkboxes defined inside a listViewControl.
I think the way to do it is using a SendMessage to the listview (or maybe to the listview item itself?) using the LVM_SETITEMSTATE parameter but i don't know the exact format...anyone have any idea?
SendMessage, LVM_SETITEMSTATE, 1000, SysListView321
i think that 1000 means that the checkbox will be checked and 2000 means that he will be unchecked.
do i need to do a loop for each ListViewItem?
I had also tried to use the
LV_Modify(0, "+Checked")
But it doesnt seems to work also.
To emphasize the problem, I am not creating my own List View, i'm trying to manipulate the state of an exisiting application ListView.... (i'm running an installer and using the AutoHotKey script i press the next buttons on each of the screens, but in this screen i need to first select all the components and only then move to the next screen) Any AutoHotKey Experts in here?
© Stack Overflow or respective owner