G
Guest
I have a form with a listbox. When the listbox has been populated the user can press a command button to display another form. This new form is based on a query that needs access to the recordset in the previous forms list box, e.g
SELECT ID, x, y, z from table where ID in (SELECT DISTINCT ID from listbox-recordset)
How would I do this, do I use recordsetclone somehow ?
SELECT ID, x, y, z from table where ID in (SELECT DISTINCT ID from listbox-recordset)
How would I do this, do I use recordsetclone somehow ?