error 3075: functions such as CHR$ not working on Vista

A

Andy_B_UK

Hi there. I'm developping in Access 2007, database in 2003 format, and using
functions such as CHR, LEFT, and RIGHT, in queries. This all works fine for
Windows XP users, but in Vista, the same database causes runtime error 3075
"Function is not available in expressions in query expression..."

Strangely, if I build the same query from scratch in a new Access database
in Vista, everything is fine.

I expected this must be a missing reference, but they all seem to check out
fine.

This issue is now causing big problems as we now have some Vista users &
some XP users.

Any ideas anyone?
Thanks
Andy
 
T

Tony Toews [MVP]

Andy_B_UK said:
I expected this must be a missing reference, but they all seem to check out
fine.

Run the following code and post back the results.

Sub ViewReferenceDetails()

Dim ref As Reference

For Each ref In Access.References
Debug.Print ref.Name & " - " & ref.Major & "." & ref.Minor & "
- " & ref.FullPath
Next ref

End Sub
 

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

Similar Threads


Top