Using functions and subroutines in other modules

  • Thread starter Thread starter Robert Crandal
  • Start date Start date
R

Robert Crandal

I have some functions and subroutines define in Module1.
How would I go about using/calling these functions
from Module 2???

(sorry if that is a newb question)
 
In Module2 simply call the Functions and Procedures as you would in Module1
but its often best to qualify you calls...

Module1.Procedure1(x)

x = Module1.Function1(x)

etc, etc ...
 
Back
Top