First, unless you know that the user can only select 24 or less items, I wouldn't use INLIST. Rather create a cursor with the selected values. Then:
Select * from table1 where ;
table1.column1 IN (SELECT * from mycursor) ;
INTO ...
To process the multiple selected items into the cursor, see the VFP help file for the ListBox Property Multiselect for some sample code.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.