i can call normal function,
Sub Foo()
normalfunc ' normal.normalfunc
End Sub

But If I reference a project, I only call that like below:
Sub Foo()
RefProject.testfunc ' Why i must writer RefProject?
End Sub

Re: How can I reference another project as Normal? by Word

Word
Fri Apr 08 07:37:53 CDT 2005

G'day "rainfall" <rainfall@discussions.microsoft.com>,

This is not the case on my Word 2k.

Steve Hudson - Word Heretic

steve from wordheretic.com (Email replies require payment)
Without prejudice


rainfall reckoned:

>i can call normal function,
>Sub Foo()
> normalfunc ' normal.normalfunc
>End Sub
>
>But If I reference a project, I only call that like below:
>Sub Foo()
> RefProject.testfunc ' Why i must writer RefProject?
>End Sub
>