CompuServe Messages

#ListItem Disable/Enable

    04-Oct-91 17:39:59
Fm: Dennis L. Harrington 76216,3472
To: Mike Ariew 72040,1667
Mike, About the only way to do this is with an array that indicates which elements in the list box have been selected. Fill the list box, then create the array: x = listbox.listcount dim z(x-1) as integer When an item is selected: x = listbox.listindex if z(x) then 'this item was previously selected else z(x) = true 'process a first time selection end if –dennis There is 1 Reply.