I am trying to reference subs that are in the Word Document Project from normal ()
The screenshot should explain it best but…
This is in Normal / Modules / New Macro
Sub Macro1()
<code>Project.Module1.test
</code>
<code>Project.Module1.test
</code>
Project.Module1.test
End Sub
This is in Project / Modules / Modules1
Public Sub test()
<code>MsgBox "This is a subroutine in Temp"
</code>
<code>MsgBox "This is a subroutine in Temp"
</code>
MsgBox "This is a subroutine in Temp"
End Sub
I’ve tried a number of variations, but I always get “424” Object Not Found” Error
What am I doing wrong? Thanks in advance. – CES