Hey All,
OK. I've solved some of the problem. Turns out, the .config file that I
had created had a typo. It does not crash Word when created properly.
However, my addin is not running when Word launches. I also tried creating
a brand new addin from scratch and it points to VS2003 and not MS Word.
Thus, when the addin runs, it runs VS2003. After redirecting the addin to
run when Word runs, even though Word launches, the code does not run.
Any ideas?
Regards,
TC
> Hey Cindy,
>
[quoted text clipped - 35 lines]
>> This reply is posted in the Newsgroup; please post any follow question or
>> reply in the newsgroup and not by e-mail :-)
Patrick Schmid - 14 May 2006 21:12 GMT
Hi TC,
I don't know if you can do it or not, but what happens if you remove the
.NET 2.0 Framework?
Patrick Schmid
> Hey All,
>
[quoted text clipped - 53 lines]
>>> or
>>> reply in the newsgroup and not by e-mail :-)
TCook - 15 May 2006 03:19 GMT
Hey Folks,
I have solved the issue and will detail the process below:
1) For addins, place a config file prefixed with the name of the application
in its folder (i.e. for MS Word winword.exe.config) that contains the
following:
<configuration>
<startup>
<requiredRuntime version="v1.1.4322" safemode="true" />
</startup>
</configuration>
2) Make sure that the addin hasn't been disabled. Under MS Word, this list
can be found under the 'About' dialog box. Remove the addin from this list.
3) Make sure that the "LoadBehavior" registry key is set to "3" under the
following registry directory:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\Word\Addins\[AddInName].Connect
4) Make sure that the addin is set to run under "Debug" mode via the
"Configuration Manager" from within VS2003. This can found under Project ->
Properties -> Configuration Manager -> Active Solution Configuration.
I hope that the above helps others encountering the same issues.
Best Regards,
TC
> Hi TC,
>
[quoted text clipped - 61 lines]
>>>> or
>>>> reply in the newsgroup and not by e-mail :-)