I tried the simple query:
select Year ( #5/1/1990# );
It shows error dialog:
Not defined function "Year" in expression
Also, when I use Date()
in the form it shows #NAME
. I added it with expression builder in Access. What am I doing wrong?
There is a problem with the referenced libraries in your project.
Open the VBA Editor ("Database Tools"->"Visual Basic" in the Ribbon) there go to the menu "Tools"->"References". Check if there is any library marked with "missing". Reinstall those libraries or change their path by removing them and adding them using the "Browse" button.
Generally you should remove any library you do not actually use in your project.
If that does not help, remove all the libraries (if possible, some are built-in and can not be removed) and add them again.
After changing the libraries use the menu "Debug"->"Compile yourProject". That should show error messages if there are obvious problems with the libraries in the VBA code. It will however not detect any problems with expressions used in queries or Form-controls.
If none of the steps above helped fixing the problem. You could create a new Access database and then import all the objects from your old database into the new one unsing "External Data"->"Access" in the Ribbon.