A
A man
I have Win2000, Access 2002, using a file in A2000 mode. I have a form, called
Util with code in it. I have a module in the same MDB file, called "Utility".
In other versions of access all code had access to all code in other modules,
like Utility. Now, my code in the form Util does not see any routines in the
Utility module. Even if my subs and functions are Public.
Example.
I have one function declared as:
public function CurrentDBDir() as string
....
Another sub as:
Public Sub writeln(s as string)
....
So why can't my form Util see the routines CurrentDBDir or writeln? I get
compile errors, like "ambiguous name detected: writeln".
Util with code in it. I have a module in the same MDB file, called "Utility".
In other versions of access all code had access to all code in other modules,
like Utility. Now, my code in the form Util does not see any routines in the
Utility module. Even if my subs and functions are Public.
Example.
I have one function declared as:
public function CurrentDBDir() as string
....
Another sub as:
Public Sub writeln(s as string)
....
So why can't my form Util see the routines CurrentDBDir or writeln? I get
compile errors, like "ambiguous name detected: writeln".