Good morning,
I would like to use an unbound combo box on a form to preview the selected report. The combo box is populated by a list of all the report names.
I am currently using the AfterUpdate function to select the report name and am using the the following code:
When I try to select one of the reports in the list, nothing is happening. How can I get this to work properly?
Thanks for your help.
I would like to use an unbound combo box on a form to preview the selected report. The combo box is populated by a list of all the report names.
I am currently using the AfterUpdate function to select the report name and am using the the following code:
Code:
Private Sub ReportCombo_AfterUpdate() DoCmd.OpenReport Me.ReportCombo, acViewPreview End Sub
Thanks for your help.
Comment