Is there a utility that you can use to compare two different Access databases (including the VB code)? I have a form that was working before, now it’s not. I have a copy of the database from a few days ago when my form was working. I don’t remember changing anything on that form. It is now highlighting in yellow the “Sub Form_Current(). And the word Error$ is highlighted in blue saying that it can’t find the project or library.
Sub Form_Current()
On Error GoTo Form_Current_Err
If ChildFormIsOpen() Then FilterChildForm
Form_Current_Exit:
Exit Sub
Form_Current_Err:
MsgBox Error$
Resume Form_Current_Exit
End Sub
I don’t know what’s going on.