MS ACCESS Undefined Function Error

G

Grace

Hi,

Access Database gives an undefined function error in
queries for example "File Len" when using Windows 2000
SP4. SP3 machines are fine.
 
M

Michel Walsh

HI,


It *may* be due to tighter security. Try to write a VBA function,
in a public module, that return the result of the function that is now not
accessible because of security:

Public Function MyFunction( arg1 as ... )
MyFunction = OriginalFunction( arg1, ... )
End Function


It may also be due to bad references (Tools | References ... )



Hoping it may help,
Vanderghast, Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top