1. Multiple Selections in SortedCombo
- Posted by Chris Bensler <bensler at MAILOPS.COM> Jan 24, 2001
- 477 views
How do I allow multiple selections from a sorted combo? Or any list control for that matter.. Chris
2. Re: Multiple Selections in SortedCombo
- Posted by Brian Broker <bkb at CNW.COM> Jan 24, 2001
- 454 views
- Last edited Jan 25, 2001
On Wed, 24 Jan 2001 13:43:58 -0500, Chris Bensler wrote: >How do I allow multiple selections from a sorted combo? Or any list control >for that matter.. > >Chris A list box can have an LBS_MULTIPLESEL style that turns string selection on or off each time the user clicks or double-clicks a string in the list box. The user can select any number of strings. A list box can also have an LBS_EXTENDEDSEL style that allows multiple items to be selected by using the SHIFT key and the mouse or special key combinations. However, a combo box does not appear to have any similar styles... -- Brian