Clicking several records for detail

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

The form prompts for "Destination" and 20 records listing the PO's associated
with each of the destinations appears. The user selects one to 20 of these
POs to get the details on each of these records. What is the code for
allowing the user to select one or many records and what event should it go
on?
 
If you display the 20 ?? in a Multi-Select List Box your user can
select each record of interest. It's up to you to determine where and
how you'll process the selected records. The algorithm is to step
through the index of the records in the list box and

If Index(I) True then
do something
endive
Loop

HTH
 
Back
Top