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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top