Newbie question

  • Thread starter Thread starter David Sawyer
  • Start date Start date
You can split methods in different modules and then just use the method
names to call them. See the following code
Module m1
Sub sub1()
sub2()

End Sub
End Module

Module m2
Sub sub2()

End Sub
End Module


Hope it helps.
Thanks,
sarika
 
Back
Top