From: Youri on
Hello,

Does anybody know the compiler to use for creating
a '.wll' add-in for Microsoft Word from a template file ('.dot') ?

Many many thanks!
From: fumei via OfficeKB.com on
Do you mean DLL?

If so, then VB (not VBA) makes dll. However, it does not actually take a .
dot file and make it into a DLL. You have to actually create the DLL in VB.
You should, though, be able to copy over a fair amount of code to the DLL
project. But be careful, and make sure you debug to the nth degree. There
ARE some differences that have to be accounted for.

Youri wrote:
>Hello,
>
>Does anybody know the compiler to use for creating
>a '.wll' add-in for Microsoft Word from a template file ('.dot') ?
>
>Many many thanks!

--
Message posted via http://www.officekb.com

From: Nick Hebb on
On Jun 30, 12:48 pm, "fumei via OfficeKB.com" <u37563(a)uwe> wrote:
> Do you mean DLL?
>
> If so, then VB (not VBA) makes dll.  However, it does not actually take a .
> dot file and make it into a DLL.  You have to actually create the DLL in VB.
> You should, though, be able to copy over a fair amount of code to the DLL
> project.  But be careful, and make sure you debug to the nth degree.  There
> ARE some differences that have to be accounted for.
>
> Youri wrote:
> >Hello,
>
> >Does anybody know the compiler to use for creating
> >a '.wll' add-in for Microsoft Word from a template file ('.dot') ?
>
> >Many many thanks!
>
> --
> Message posted viahttp://www.officekb.com

WLL's are written in C++. You could use the Visual Studio Express C++
edition.