I know how to share code between modules in the same project (Word template). Is there a way to share code between projects (two different Word templates)? For now I want to work strictly with the templates. For example I have an ErrorTrapping module in a global template. I want the Fax template to be able to access this code stored in the Global template.
Here’s what I’d like to do, but not sure how to reference it…
Code in Fax template:
Public Sub CmdOK_Click() On Error GoTo ErrHandler 'some code goes here.... Exit Sub ErrHandler: ErrorMod.UnknownErrorSub ' This code module lives in a different template called Global.dot 'the project is called GTM End Sub
Thanks!