I have a form which displays one row at a time of a table. In the form there are navigation controls as well as a command control which print information of the row in display with the code:
DoCmd.OpenReport “rptReportName”, acNormal, , strFilter
where rptReportName is the name of the report which formats the output of the displayed row.
Whenever I execute the print command button, the report is printed as expected. However, my form cannot be updated after printing and all my other command controls refuse to work except to close the form using the Close button of the form.
What is the cause that makes my form un-updatable? I’m using DAO objects.