1
vote
1answer
77 views

How to add container in Visio 2010 via C#?

I have a simple code to draw to shapes. Visio.Shape dropShape = ActivePage.Drop(GetMaster(@"Circle"), x, y); Visio.Shape dropShape2 = ActivePage.Drop(GetMaster(@"Circle"), x + 3, y); And I whant to ...
1
vote
0answers
67 views

Query for property CurrentEdition of Visio Application Object

The visio application object can be controlled in c# programs via the assembly Microsoft.Office.Interop.Visio. The documentation of the visio application object 2010 is showing the property ...
2
votes
2answers
97 views

Improve performance of Visio automation from .net - creating diagram with lots of shapes and shape data

I have some code which creates potentially lots of shapes and sets shape data to various values. Some shapes might have 5 shape data rows, and some 20 (or various other values). This is written in ...
1
vote
0answers
119 views

Visio 2010 Add-In Error when debugging: DisconnectedContext was detected

I have a very strange problem with my (VSTO) Visio 2010 Add-In. The AddIn processes many visio vsd files sequentially. What I basically do is a loop thru all vsd files in a given folder. For each vsd ...
0
votes
1answer
114 views

Reverse engineer c# into a format that can be imported to LucidCharts [closed]

I am trying to come up with a way to import our current large application into a UML diagram for LucidCharts. LucidCharts supports a vdx XML format from visio. I'm just mainly trying to find a way to ...
1
vote
2answers
103 views

How do I hide the UI when automating Visio?

I am automating Visio from Interop for an application. All is going well, the only problem is that I don't want the end user to see the visio canvas being populated, which is what is happening at the ...
1
vote
1answer
258 views

Add image to orgchart shape using VSTO for Visio

I am working on Implementation of dynamic organization chart. In my project (in visual studio 2010 - winformapplication) i used VSTO for Visio (visio 2010). Now I want to add an image to my shapes ...
1
vote
0answers
524 views

Import visio diagrams in visual studio 2010 ultimate

I am trying to export xmi file from visio 2010. This is to use imported xmi files to import in visual studio 2010 ultimate. This blog http://modeling-languages.com/microsoft-visio-uml-xmi-export/ ...
0
votes
0answers
226 views

Generate custom Visio 2007 timeline using Project 2007 data

In Visio 2007, you can import a Project 2007 MPP file and generate a timeline as out-of-the-box functionality. I'm looking to customize the outputted timeline and automate as much of this custom ...
1
vote
1answer
285 views

add in to visio 2010 using c#

hi, i need help for following thing *i want create add in to visio to zoom individual shapes.* for that i want create tree view in vs2010 and based on its selection i want zoom either entire ...
1
vote
2answers
188 views

Binding Prevents Visio Events from Firing

I know this sounds bizarre, but it is true. I have a simply WPF application that hosts a Visio control. There are no problems with that. Some essential events, such as DocumentOpened does work. But ...
1
vote
2answers
411 views

Visio AddAdvice Throws an Exception

I'm trying to handle an event when elements are added into a diagram, however AddAdvice() throws an unhandled COM exception: using System; using System.Collections.Generic; using ...
0
votes
1answer
464 views

How to drop a shape inside shape in VISIO using VB.net

I am using Rack-mounted Equipment (US units).VSS as stencil. I need to Connect a server on Rack. Please give an answer its urget...!
0
votes
2answers
811 views

How do I parse Visio drawings using .Net?

We already have several (100+ pages) of drawings in the same format that describe interconnecting systems. Instead of pounding keys for 3 months transferring these relationships to a spreadsheet, I ...
1
vote
7answers
2k views

How to programmatically detect 32-bit or 64-bit visio version is installed?

How to programmatically detect 32-bit or 64-bit visio version is installed?
0
votes
1answer
481 views

How can I embed a Visio 2007 editing control in my C# (.Net 3.5) application?

I would like to embed a Visio editing interface in my C# form. The best instructions I have found so far are from here: http://msdn.microsoft.com/en-us/magazine/cc164043.aspx but they are outdated. ...
3
votes
1answer
1k views

generate visio diagram on the fly with dotnet

is there a good way of generating a visio diagram of an architecture (with a decent layout) if i have a list of client apps, services and databases? i would have thought there would be a decent way ...
0
votes
1answer
2k views

Types of UML diagram - VISIO - ASP.net

Below, I have an extract from a design specification and need to create UML diagrams as .NET specifications. No coding is yet started or is there any solution structure yet. What would be best ...
0
votes
2answers
2k views

Class library in Visio

How to represent a .net class library and its classes in the Visio? To me, the Package and the Class seems to represent the library and classes respectively. Any suggestions?
3
votes
6answers
824 views

Documenting a dependency tree

I have a requirement to document the assembly dependencies in a vb6/dotnet application. What techniques / tools are good for performing this sort of document. I was planning on using Visio for ...
3
votes
2answers
4k views

Project dependency diagram in Visio

I'm looking for a tool that will generate an assembly/project dependency diagram in Visio (or as close as possible) to assist me with breaking up some of our system into more manageable trunks. The ...