Module name change

G

Guest

Hi all

I changed a module name and when I copied this from my development version
to the live version I get errors on compile relating to ambiguous names. If I
put the name of the module in front of the procedure I am calling it compiles
ok and all works. Except for a function I call from a query, this will not
let me put module.function as it errors with invalid syntax error.

Does anyone know how I can fix this? I've tried renaming back to the
original name but it still does not work.

Thanks in advance for any help.
Sue
 
D

Douglas J Steele

"Ambiguous Name" errors typically are because you've got two public
functions or subs with the same names. It shouldn't have anything to do with
the name of the module itself. Take a look at the contents of the module you
added, and make sure there aren't other modules in the database with the
same routines.
 

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