Hi,
I had a shared add-in that worked so good on word but now i dont know what
happend that i stopped to work , ms word seems to be dead it does not answer
to any add-ins at all.
i use VS 2005 and C# and office 2003
I set "Start external program" to winword.exe and used breakpoint to debugg
my code but my breakpoints dont be hit and i got this message:
"the breakpoint will not currently be hit no symbols have been loaded for
this document"
my VS 2005 has been slower and i dont know if it is office problem or VS
problem
Peter Macej - 05 May 2006 14:17 GMT
> "the breakpoint will not currently be hit no symbols have been loaded for
> this document"
Try to play with debugging settings in VS:
1. Go to Project Properties - Compile - Advanced Compile Options... and
set "Generate debug info" to Full.
2. Open menu Tools - Options - Debugging - General. Check "Suppress JIT
optimization...". If you leave it unchecked, optimizations cause that
some debug info is not present.
If this doesn't work, try to set also other debugging settings.

Signature
Peter Macej
Helixoft - http://www.vbdocman.com
VBdocman - Automatic generator of technical documentation for VB, VB
.NET and ASP .NET code
Carlos J. Quintero [VB MVP] - 16 May 2006 14:03 GMT
Hi Cyrus,
That problem happens typically because the debug .pdb file is out of sync
with the .dll file. In this case, delete both, ensure that you are at Debug
config and rebuild. Another cause is that you have two copies of the add-in
dll (so the .pdb file is out of sync with one of them).

Signature
Best regards,
Carlos J. Quintero
MZ-Tools: Productivity add-ins for Visual Studio
You can code, design and document much faster:
http://www.mztools.com
> Hi,
>
[quoted text clipped - 12 lines]
> my VS 2005 has been slower and i dont know if it is office problem or VS
> problem