<<
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.
>>

Not sure I understand the problem.

If you attach the variable vList TEXT to the Variable Lookup Listview and 
select a few records, the ID of the most recently selected record is the last 
item in vList.  You can pull it off in your button EEP with

SET VAR vThisID = (SSUB(.vList, ITEMCNT(.vList)))

and then operate (eg edit with the detail form) on that last selected record 
only.

It also works in the on-click eep for the list view, so you can automatically 
update the display based on the last selected record while maintaining all the 
selections.

Is that what you're looking to do?
--
Larry

Reply via email to