redndahead Posted July 12, 2004 Posted July 12, 2004 How would I go about allowing multiple selections to be made in my list box? And then what sort of output should I get from GUIRead() ? Thanks red
CyberSlug Posted July 12, 2004 Posted July 12, 2004 (edited) --> look hereYou need to create a list box with one of these two styles:$LBS_EXTENDEDSEL = 0x0800;$LBS_MULTIPLESEL = 0x0008;One of these allows mulstiple selections just by clicking; the other requires you to Shift+Click or Ctrl+ClickYou can then call _GuiLB_GetSelItemsText($yourListBoxGuiRef)Addendum: here's another helpful link with some good examples (see especially my third post) Edited July 12, 2004 by CyberSlug Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
redndahead Posted July 12, 2004 Author Posted July 12, 2004 thanks for the info just what i needed I tried to search multiple selections through this forum but that post didn't come up. Now I have a problem with the return value. I will make another post. red
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