I have written several applications in Delphi which use Word automation. The programs all use templates which are stored in a directory. In pre-2010 versions of Word, one would define the location of the templates in tools|options|file locations; the programs would pass the name of the template and Word would know where to find it.

My client has now moved to Office 2010, and as a result, Word cannot find the template when started by my programs. I haven't been able to find a similar dialog box in Word in which I can define the default directory for templates. How does one define such a directory?

TIA, No'am

link|improve this question

I should have added the fact that several computers have to access the templates and so they are stored on a shared network drive. Storing the templates on each user's computer is not an option if I have to update them. – No'am Newman Nov 23 '10 at 16:23
feedback

4 Answers

up vote 2 down vote accepted

Click File | Options | Advanced | File Locations and you get the same dialog as in older verionsalt text

link|improve this answer
I'll check this out in the evening when I can access the client's computer. – No'am Newman Nov 23 '10 at 14:29
This worked perfectly, thank you. Methinks Microsoft are trying to tell us something by hiding the button which activates the dialog box right at the bottom of a very long dialog box, which I am sure has Alan Cooper ("About face") in fits. – No'am Newman Nov 23 '10 at 16:21
What they are telling you is that you shouldn't need to change it on a regular basis. For what it's worth, I have nightmares about going back to Office 2003 after a couple of years with the ribbon! – David Heffernan Nov 23 '10 at 17:31
feedback

Instead of forcing your user to configure Word to define the location of templates, you might prefer to invoke word using /t switch.

/ttemplatename starts Word with a new document based on a template other than the Normal template.

>"%programfiles%\Microsoft Office\Office14\winword.exe" /t"c:\MYTEMPLATES\mytemplate.dotx"
link|improve this answer
This isn't an option as Word is being invoked via automation. – No'am Newman Nov 23 '10 at 14:28
feedback

Can't you just specify the full path when creating a new document? Why rely on a settings that possibly can even be changed by the user? Put your templates in your own folder and specify the full path.

link|improve this answer
The templates are in a different location on my client's computer to where they are on mine. I am considering saving the location in the registry but would prefer a different solution. – No'am Newman Nov 23 '10 at 14:28
feedback

Word's paths configuration are stored

You can get the USER template folder via

Word.Application.Options.DefaultFilePath(WdDefaultFilePath.wdUserTemplatesPath)

(there are others options for that property too).

As far as I can tell, the template loading rules haven't changed from 2007 to 2010.

Generally speaking, if your add in needs to load a template, you should specify the FULL path and file name to the template, but you can get the typical user path via the above.

On the other hand, if you install the template into WORD\STARTUP, word will automatically load it. that may not be what you need/want, though.

Finally, if your template doesn't/shouldn't change, it might be better to leave it in your PROGRAM FILES\appname folder and load it from there.

Generally speaking, +requiring+ users to change the FILE LOCATIONS in word (or changing it programmatically) is a bad idea, just because so many people wouldn't have a clue, and those that do definitely DO NOT want addins changing those settings automatically!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.