Calling a Module?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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!
 
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.
 
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.
 
Back
Top