G Guest Dec 7, 2005 #1 In code, is there a way to refresh a report control while the report is open? Thank you
M Marshall Barton Dec 7, 2005 #2 Alex said: In code, is there a way to refresh a report control while the report is open? Click to expand... 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.
Alex said: In code, is there a way to refresh a report control while the report is open? Click to expand... 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.
G Guest Dec 7, 2005 #3 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"
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"