Created ACCDE database, on selecting a level 2 navigation form I get this error "requested type library or wizard is not a vba project"
all other forms are working fine, error is on only one form.
Created an OnError event for the main navigation form:
Private Sub Form_Error(DataErr As Integer, Response As Integer)
If DataErr = -25357 Then
Response = acDataErrContinue
End If
End Sub
No error now, but the form is not working
all other forms are working fine, error is on only one form.
Created an OnError event for the main navigation form:
Private Sub Form_Error(DataErr As Integer, Response As Integer)
If DataErr = -25357 Then
Response = acDataErrContinue
End If
End Sub
No error now, but the form is not working