I have list of names and their bio data.
I am able to get the information for the multi selected persons.
What I need is - steps for using multi select, to print out individual bio
data of the persons selected for ex. say selected three persons.
Pls help. Will be watching for guidance.
brgds/captgnvr
> Dear All
>
> I have list of names and their bio data.
>
> I am able to get the information for the multi selected persons.
>
> What I need is - steps for using multi select, to print out individual bio
> data of the persons selected for ex. say selected three persons.
>
If by "print out" you mean that you have a report that shows those details
and you need to print a filtered report for each selection, then you can do
this:
Dim var As Variant
For EAch var in YourListbox.ItemsSelected
DoCmd.OpenReport "YourReportName", , , , "Report_Field=" &
Me.YourListbox.ItemsSelected(var)
Next var
Obviously you'd have to change the OpenReport call to match your objects.
The "Report_Field" would be the field on your report which corresponds to
your listbox items.
See this KB article for more info: http://support.microsoft.com/kb/827423