I have been putting together a set of reports that are driven by sql-driven logic composed within a form-based module. Some recent change in my logic has triggered the 3270 "Property Not Found Error" when the report is opened for preview with the following line:
DoCmd.OpenReport strReportName, acPreview
Previous versions of my logic were working fine, but after a set of recent changes, suddenly this. To what is the message referring? I understand properties in general, but more specifically, how do I determine what property is not found, and does it mean in my report, my form, underlying tables, code? Is there some way to interrogate the system about at least the general location of the problem property?
DoCmd.OpenReport strReportName, acPreview
Previous versions of my logic were working fine, but after a set of recent changes, suddenly this. To what is the message referring? I understand properties in general, but more specifically, how do I determine what property is not found, and does it mean in my report, my form, underlying tables, code? Is there some way to interrogate the system about at least the general location of the problem property?