In code, is there a way to refresh a report control while the report is open?
Thank you
Marshall Barton - 07 Dec 2005 19:16 GMT
>In code, is there a way to refresh a report control while the report is open?
No. Once a report is printed or displayed, it is done.
Assuming you are referring to a report preview on the
screen, you need to close the report and reopen it to see
any new/changed data in the report.

Signature
Marsh
MVP [MS Access]
Ofer - 07 Dec 2005 19:18 GMT
As much as I know it can't be done.
You will need to close the report and load it again, using the code
docmd.Close acReport ,"ReportName"
Docmd.OpenReport "ReportName"
> In code, is there a way to refresh a report control while the report is open?
>
> Thank you