MS ACCESS Undefined Function Error

  • Thread starter Thread starter Grace
  • Start date Start date
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.
 
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
 
Back
Top