I have inherited a membership database which seems to have lost some of its functionality. Specifically, there is a Check Box labelled "Convert To Retired" on the MAIN MEMBER FORM which generates the run-time error '7874' ...Access can't find object 'CONVERT_TO_RETIRED'. This refers to an Update Query CONVERT_TO_RETIRED.
The Build Event code for this Query shows 3 tables - Members (Member No., Personal Details, etc,) Commitments (Member No., Commit No., Date Due) and Commitment Types (Commitment Number, Description, Amount, etc.). The fields Member No in Members and Commitments are joined and the field Commit No in the Commitments table is joined to the field Commitment Number in the Commitment Types table.
The Build Event code for the Check Box is:
Private Sub CONVERT_TO_RETIRED_CLICK()
DoCmd.OpenQuery "CONVERT_TO_RETIRED"
DoCmd.Close
End Sub
Can anyone show me how to tackle this run-time error please ?