Module name change

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