Questions tagged [visio]

Visio is a diagramming tool included as part of the Microsoft Office suite. This tag is only for questions on programming against Visio objects or files—also tag with VBA.

Visio is a diagramming tool included as part of the Microsoft Office suite, though it is usually acquired separately. It is used to create documents such as flowcharts, organizational charts, network topologies, and software architecture diagrams. Visio includes a development environment known as the ShapeSheet and an API which can be used to develop diagraming and data visualization applications.

Ask programming-related questions about Microsoft Visio (ShapeSheet, API, UML, flow charts, database diagrams, etc.) here on Stack Overflow. For non-programming applications of Visio and for general Visio support, consider if your question might be a better fit on Super User.


Documentation:

1485 questions
5
votes
3 answers

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 ability to include/exclude non-project dependencies…
Kieran Benton
  • 8,739
  • 12
  • 53
  • 77
5
votes
3 answers

Create attributes in visio drawing for export to svg

I'm developing a shemas in visio editor and later, after some changes, export them to svg format for view in browser. I need a some method for identify my visio objects in svg file. This will be used in javascript for navigate over svg objects by…
Sergio Belevskij
  • 2,478
  • 25
  • 24
5
votes
1 answer

New Created Custom List Shape Doesn't Work in Microsoft Visio 2013 x64

Objective: First, I should say what I want to do, and then I'll describe what I've done to achieve to my Goal in the next (Descriptions) part. I want to create a Custom List Master Shape from the Plain Container of the Diagram Parts section in the…
MRS1367
  • 1,053
  • 1
  • 14
  • 40
5
votes
1 answer

How does the UML support inVisual Studio 2010 compare to Visio?

Visio has been supporting UML diagrams for quite some time now. Microsoft has now added UML support in Visual Studio 2010. Will these two tools interoperate? Further how does one go about deciding which tool to use for what diagrams (assuming one…
JonnyBoats
  • 5,177
  • 1
  • 36
  • 60
5
votes
1 answer

How to extract shape coordinates in Word VBA

I'm trying to write a VBA macro in Word that will extract shapes and build them in Visio. I'm having some trouble getting the X Y coordinates of the shape in the document. I have tried using the Top and Left properties of the shape objects. The…
Jon Fournier
  • 4,299
  • 3
  • 33
  • 43
5
votes
1 answer

Using Database entries to dynamically create a visio diagram

Is this possible? We have a Configuration Management Database that stores information such as our servers, what datacentre they're stored in, applications that reside on them, as well as interfaces that send data from one application to…
Kolten
  • 3,495
  • 5
  • 42
  • 59
5
votes
1 answer

How can you add a Custom Panel in a Visio 2013 add-in?

Recently I wrote an outlook add-in which has a ribbon.xml file for an extra ribbon, context menu's, etc. I also added an extra panel docked on the right of my window. Now I've begun some research as on how to create add-ins for Visio. The…
Toon Casteele
  • 2,479
  • 15
  • 25
5
votes
1 answer

How to add a shape to a group with VBA in Visio

How can you add a shape into an existing group in visio, without ungrouping because I have many custom properties into my group shapesheet. I dont want subformulas using it to be broken. Here is the beginning of my VBA code but I can't find a method…
Nicolas Thery
  • 2,319
  • 4
  • 26
  • 36
4
votes
9 answers

Visio the standard for software development sketching?

I feel that my professional exposure has been biased towards Visio, by the choice of IT managers and project managers. I've worked only in Microsoft solution centric shops where MS Office was the standard. Are there any other professional shops out…
H. Abraham Chavez
  • 828
  • 2
  • 8
  • 20
4
votes
2 answers

Adding Shapes to a New Visio Document

I have this code that creates a new Visio document and adds a rectangle. It works, but I don't like having to open another document to get the Masters collection from it. The issue is the new document has an empty Masters shape collection. I…
David Green
  • 1,210
  • 22
  • 38
4
votes
2 answers

Tools or programming libraries to visualize custom logic

I am looking for tools to aid in the visualization of custom business logic used to perform document generation. The logic is expressed as an object-oriented model consisting of a graph of decision points and rendering actions. The basic building…
David Taylor
  • 2,021
  • 21
  • 25
4
votes
1 answer

Alternative for visio server-side automation

Mircosoft recommends against server-side automation of office tools (Considerations for server-side Automation of Office) However, I see no other options. What I'm trying to do, is convert vsd files to html (image+map for hyperlinks). This is not…
Flogo
  • 1,673
  • 4
  • 20
  • 33
4
votes
5 answers

How to read Visio Document content in C#

My DLL library code is as follows: using System; using IVisio=Microsoft.Office.Interop.Visio; namespace Emix { public class Visio { protected String path; public Visio(String path) { this.path = path; } public void…
Mike Doe
  • 16,349
  • 11
  • 65
  • 88
4
votes
2 answers

Coordinate Axes in Visio

I Visio start of coordinates is the left-lower corner. Is there any way to change it, for example set the left-upper corner as a start of coordinate axes?
Daniil Belonin
  • 373
  • 1
  • 9
  • 19
4
votes
1 answer

Visio Coordinates Format

I develop a tool which works with process diagrams. I need to write an export feature for the tool, that will save current process in Visio VDX format. I found that Visio saves shapes coordinates in a kind of format which is not easy to understand.…
Daniil Belonin
  • 373
  • 1
  • 9
  • 19