paule22 Posted December 21, 2008 Posted December 21, 2008 Hello, I'm new in AutoIT3 ... I have the code: $listbox1 = GuiCtrlCreateList("", 5, 32, 170, 120, BitOR($LBS_STANDARD, $LBS_EXTENDEDSEL)) $listbox1 = GuiCtrlSetData(-1,"item1|item2") how can I read the values back? $tt = _GUICtrlListBox_GetSel($listbox1,4) msgbox(0,"list=",$tt) give me False and/or 0 Output :-( Also, how can I get the (selected) item back? Thanks for helping paule
rasim Posted December 21, 2008 Posted December 21, 2008 (edited) $iIndex = _GUICtrlListBox_GetCurSel($hListBox) $sText = _GUICtrlListBox_GetText($hListBox, $iIndex) MsgBox(0, "Text", $sText) Edited December 21, 2008 by rasim
paule22 Posted December 21, 2008 Author Posted December 21, 2008 Hi rasim, works great Thank you paule
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