Cannot debug my Visio add in

N

nabil

I am building a Visio Add-in with VB .NET, when I start the .NET
debugger, the Visio application starts but I cannot use the debugger,
the Visio is detached from .NET.
I tried the same project on other computers and it works fine.
Also I reinstalled Ms office, Visio and .NET but the same problem
persist.

I highly appreciated your help
Thanks
 
P

Pedro Silva

Hi there,
If you are using Visio 2003:

Open Visio mannually , go to Help menu then choose Option "About
Visio". Then click on Button "Disabled Items". Check there if your
add-in is there and re-enable it.

Hope this works.

Pedro Silva.
 
D

David P (Visio MVP)

If you have installed .Net FW 2, and you are using Visual Studio 2003, then
you will need to create a text file called visio.exe.config in the same
folder as the Visio.exe file (usually C:\Program Files\Microsoft Office\Visio
11)
The file should contain the following:

<configuration>
<startup>
<requiredRuntime version="v1.1.4322" safemode="false" />
</startup>
</configuration>
 
A

Al Edlund

nicely done Mr. Parker
al

David P (Visio MVP) said:
If you have installed .Net FW 2, and you are using Visual Studio 2003,
then
you will need to create a text file called visio.exe.config in the same
folder as the Visio.exe file (usually C:\Program Files\Microsoft
Office\Visio
11)
The file should contain the following:

<configuration>
<startup>
<requiredRuntime version="v1.1.4322" safemode="false" />
</startup>
</configuration>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top