Toggle Multi-Select on and off with a radio button. When you toggle OFF, store the ListIndexes of the SELECTED state items in a comma separated string (cheap array) and as they are being stored set the SELECTED state to off. When you click the radio button to ON, iterate through your array, setting the SELECTED state to ON and clear the array (null).
You will have to loop throught the ListBox from LISTINDEX 0 to (LISTCOUNT -1) ----- Original Message ----- From: <[EMAIL PROTECTED]> To: "RBASE-L Mailing List" <[email protected]> Sent: Monday, July 14, 2008 6:09 PM Subject: [RBASE-L] - Multi-select List Box > I'm drawing a blank on how I could have the "best of both worlds" in a > Variable Lookup List Box. > > I want multi-select to be ON because they need to select a bunch of records, > and then click a button to process all those selected items. My variable is > called vList, and it returns a list of the primary key ChecksID. > > However, what if they want to click on a row and trap the ChecksID of just > that row so that they can click another button to display some detail of that > record. Or I can use the right-click eep to trap the value and display. I > want > all the other multi-selects that they made to still be selected, so that > can't be lost. > > Thanks! > > Karen > > > >

