Pushpendra,
To get the names of your reports listed in a combobox, you will need one
of these 2 approaches...
- make a table with a single text field where you enter the names of
your reports, and then use this table as the Row Source of the combobox
- set the Row Source Type property of the combobox to Value List, and
then in the Row Source property type in the names of the reports,
separated by ;s
You can then put a macro on the After Update event of the combobox, or
on the CLick event of a Command Button on your form. The macro will be
like this...
Action: OpenReport
Report Name: =[NameOfYourCombobox]