aspnetuser
Technical User
i use the following code that allows users to click reports in a list menu.
Dim X As Variant
For Each X In ReportList.ItemsSelected
DoCmd.OpenReport ReportList.ItemData(X), acViewPreview
Next
it lets them pick mutiple reports and view them.
I have to pop up a form called reportprompt so they can enter their prompts for the report.
this was the only way i could get the prompting to work
can i add this somehow to this code before the report they pick in the list menu is generated?
Dim X As Variant
For Each X In ReportList.ItemsSelected
DoCmd.OpenReport ReportList.ItemData(X), acViewPreview
Next
it lets them pick mutiple reports and view them.
I have to pop up a form called reportprompt so they can enter their prompts for the report.
this was the only way i could get the prompting to work
can i add this somehow to this code before the report they pick in the list menu is generated?