Rajesh CKR
Posts: 4
Joined: 2006-02-07
|
Hi,
My system has office 2003 installed.
When I installed and registered the OL toys project, Outlook crashes. I later uninstalled outlook 2003 and installed Outlook 2002. Still outlook crashes.
Can someone help me in debugging this issue?
Rajesh |
|
Rajesh CKR
Posts: 4
Joined: 2006-02-07
|
I figured the problem. The specific machine had .NET 2.0 framework installed. The problem went away once i uninstalled .Net 2.0
But I wonder how we could handle such a scenario since there could be machines on which .Net 2.0 is installed even though we are not using any specific feature on it.
Any help is highly appreciated....
Rajesh |
|
Sergey Grischenko
Add-in Express team
Posts: 7235
Joined: 2004-07-05
|
Hi Rajesh.
You should use configuration files like those below to force MS Office to load the .NET Framework version you need:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v1.1.4322"/>
</startup>
</configuration>
or
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v2.0.50727"/>
</startup>
</configuration>
We will publish a new ADX version in a few days. The new ADX version handles these files through the addinmodule designer. |
|