supadodger 0 Posted November 6, 2010 I Have A Gui List. How do i find out all of the selected options instead of the last one selected? GuiCtrlRead($list) is only returning the last one selected. Share this post Link to post Share on other sites
supadodger 0 Posted November 6, 2010 I Have A Gui List. How do i find out all of the selected options instead of the last one selected? GuiCtrlRead($list) is only returning the last one selected. $test = GUICtrlCreateList("Test", 16, 128, 273, 251, $LBS_MULTIPLESEL) MsgBox(0,"",GuiCtrlRead($test)) only returns the last selected on the list. i need to return all of them... Share this post Link to post Share on other sites
supadodger 0 Posted November 6, 2010 _GUICtrlListBox_GetSelItemsText Returns an array with all of the items. thanks guys! Share this post Link to post Share on other sites