BelieverofAutoIt 0 Posted April 8, 2011 Please tell me. I can't select the each check box items in ListBox. For example, Image is attached file. I cannot get the Control ID of the check boxes using AutoIt windows Info. I wrote the scripts as follows, but it cannot check in checkbox. Only active the item. $handle = ControlGetHandle ("Setup Wizard (Build 3.5.8999.0)", "", 402) _GUICtrlListBox_ClickItem($handle, 2, "left", True) Any good ideas? Share this post Link to post Share on other sites
AutoBert 197 Posted April 8, 2011 In a ListBox you have to use ControlCommand, but i think this is a Listview not a ListBox so you have to use ControlListView. mfg autoBert Share this post Link to post Share on other sites
BelieverofAutoIt 0 Posted April 8, 2011 Humm. It doesn't go well using both ControlListView and ControlCommand too. For example: ControlListView("Setup Wizard (Build 3.5.8999.0)","","ListBox1","SelectAll") ControlCommand("Setup Wizard (Build 3.5.8999.0)","","ListBox1,","Check",5) Is it problem not to read ID information using AutoIt windows Info? It is difficult to master AutoIt. Anyway thanks. Share this post Link to post Share on other sites