I started this thread with a question, got good answers, finished my program, thought I understood the issue, came back to it a week later, and I'm getting "Project is Unviewable". The template is its own project, no duplication with other templates, etc. Maybe I'm dense, but this issue seems unnecessarily difficult. Any suggestions?
To summarize the thread, excerpt of my original:
My VBA programming has always been only for myself, up to now. But I've created a document conversion program that is needed by others, and I cannot get it to work on their computers.
My conclusions after your suggestions:
To answer my own question: I needed to do these things:
- copy the modules from Normal.dot into my new template
- delete the same modules from Normal.dot
- leave the new template in my Templates directory
- put the new template in the other user's Word Startup directory
Now I can develop within the new template, and the other guy can use the macros without attaching to each doc. It's all so clear now!
"Project is Unviewable" usally means you are trying to view the code in a
loaded add-in. You'll need to actually OPEN the .DOT file (FILE | OPEN) and
then you should be able to view the code.

Signature
Tom Winter
Tom@NoSpam.AmosFiveSix.com
> I started this thread with a question, got good answers, finished my program, thought I understood the issue, came back to it a week later, and
I'm getting "Project is Unviewable". The template is its own project, no
duplication with other templates, etc. Maybe I'm dense, but this issue seems
unnecessarily difficult. Any suggestions?
> To summarize the thread, excerpt of my original:
>
> My VBA programming has always been only for myself, up to now. But I've created a document conversion program that is needed by others, and I cannot
get it to work on their computers.
> My conclusions after your suggestions:
>
[quoted text clipped - 6 lines]
>
> Now I can develop within the new template, and the other guy can use the macros without attaching to each doc. It's all so clear now!
Alex Ivanov - 26 Jan 2005 01:47 GMT
If all you need is to modify the code, it's better to create a new document
based on the template - double-click the .dot file.
Thus you won't accidentally corrupt the contents of the template while
debugging the code. You can save the vb project from the code window, but
changes made to visual appearance of the resulting new document won't be
saved in the template.
HTH

Signature
Please reply to NG only. This email is not monitored.
Alex.
> "Project is Unviewable" usally means you are trying to view the code in a
> loaded add-in. You'll need to actually OPEN the .DOT file (FILE | OPEN)
[quoted text clipped - 27 lines]
>> Now I can develop within the new template, and the other guy can use
> the macros without attaching to each doc. It's all so clear now!