Smart Document - Debug Issue

A

Alejandro

Hello,

I have a few smart documents that I have developed in .Net Framework 1.1,
and I recently got the Framework 2.0 installed. Everything works fine except
that I CAN'T DEBUG the smart documents. I still have Visual Studio .NET 2003.
I did some research and I found that there are some issues of compatibility
with the Framework runtime.
Anybody knows what should be done in order to be able to debug?
 
A

Alejandro

I found the solution to the problem. There is a conflict with the runtime,
and the VS 2003 Debugger is trying to use the 2.0, when in fact it should use
the 1.1. Therefore, we must force VS 2003 Debugger to use the 1.1. To do
this, just create a configuration file, name it "WINWORD.EXE.config" and
place it in the directory where WINDOWORD.EXE is located.
Paste this text into the config file:
<?xml version ="1.0"?>
<configuration>
<startup>
<supportedRuntime version="v1.1.4322" />
</startup>
</configuration>
 
Top