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>

Signature
Thanks,
Alex
> Hello,
>
[quoted text clipped - 4 lines]
> with the Framework runtime.
> Anybody knows what should be done in order to be able to debug?