Calling a Module?

D

Dennis

I have a PUBLIC SUB abc() in a Module.

How can I call that? In my calling program, I cave "call abc", but I get an
error that it expects a variable or procedure, not a module.

What am I doing wrong?

Thanks!
 
D

Douglas J. Steele

What did you name the module where sub abc is? If you named it abc, rename
it: modules can't be named the same as subs or functions.
 
D

Dennis

Thanks a million! That was it.

Douglas J. Steele said:
What did you name the module where sub abc is? If you named it abc, rename
it: modules can't be named the same as subs or functions.
 
Top