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
4
votes
2 answers

How to get rid of the white background of MS Visio files by PDF-Conversion?

I am currently drawing some charts and diagrams using MS Visio. But when I convert them into pdf for using in Latex-Documents, I get the whole page of the vsd-file, and not just the diagrams etc. So the entire page will be converted into pdf. Since…
DanglingElse
  • 243
  • 5
  • 12
4
votes
1 answer

How can I reduce the size of the shapes in visio?

The title above is clearly a very basic question. My real question is how can I reduce the size of my shapes (I'm using Crow's Foot Database notion) without the padding messing with the alignment. I'm currently in the process of restructuring a…
Brian
  • 2,494
  • 1
  • 16
  • 21
4
votes
1 answer

Visio VBA function to see if there's a shape in front of/behind a shape

Is there a way in Visio VBA to see if there is a shape in front of or behind a shape in Visio? I imagine I could write something that checks the bounding box of each shape in a page to see if it occupies the same space as my shape. I'd rather use…
Jon Fournier
  • 4,299
  • 3
  • 33
  • 43
4
votes
1 answer

How to get access to the VSTO Application object of multiple instances of Visio 2010 using C#?

Does anyone know how to get access to the VSTO Application object of multiple instances of Visio 2010 using C#? Marshal.GetActiveObject() only returns the active instance. There are forum posts on how to get multiple Application objects for all…
mtanu
  • 41
  • 3
3
votes
1 answer

vba programming for visio

Currently, I am working for IVR(Interactive Voice Response) System. To add the service in the IVR, I have to make the flow in the visio which have pre-defined shape provided by the seller of IVR SYstem. The shape is programmed in VBA. I decided to…
Shrestha Sunil
  • 329
  • 4
  • 13
  • 28
3
votes
1 answer

Visio - Checking If Shapes Are Connected

I am creating a visio diagram but need to check if existing shapes are connected. I wrote a method with 3 different ways to determine this. I couldn't find any shapes methods to do this directly. Here's what I came up with. I am preferable to the…
David Green
  • 1,210
  • 22
  • 38
3
votes
1 answer

VIsio 2010 Can't 'see' File DSNs

I'm using Visio 2010 Pro to reverse engineer my database. For some reason the wizard can't see my file dsns (I create them using the wizard) but System DSNs work fine. I'd like to make my DSN files portable so they can be shared with my team. I've…
3
votes
3 answers

Convert StarUML diagram to Visio drawing

I have a class diagram which i created using Star Uml but now the requirement is to port it to MS Visio . Is it possible to port the .uml to a .vsd with the xml information available? Thanks in advance.
user1046902
  • 43
  • 1
  • 4
3
votes
1 answer

Open visio by java program

I have opened the visio from java by following code.. Display display = new Display(); Shell shell = new Shell(display); shell.setText("Visio Example"); shell.setLayout(new FillLayout()); try { OleFrame…
user1210637
3
votes
2 answers

How to represent reports in UML class diagram

I am working on guest house management system. Different reports are generated on daily, weekly and monthly bases. for example i have room class which contains room no, rent etc.. room occupancy report in generated on weekly bases according to…
Mushahid Hussain
  • 4,052
  • 11
  • 43
  • 62
3
votes
4 answers

How to resize a note in a Visio 2010 UML diagram

I have added a note with about 50 lines of text to an UML diagram in Visio 2010, and I can't resize the shape. I can see connection points, but not the blue ones that you can drag to resize the shape. Modifying the height manually through View menu,…
rturrado
  • 7,699
  • 6
  • 42
  • 62
3
votes
11 answers

How to draw application architecture diagram

I would like to know what guys are using to make diagram of your application/service architecture ? I would like to make diagrams representing the different layer of the whole application and for some parts go deeper (class level)
GillouX
  • 469
  • 2
  • 7
  • 21
3
votes
1 answer

how to draw ER diagram in Visio 2007?

I need to draw ER diagrams in visio 2007 which look like below but it seems there is no template available there, how should I do so ? thanks
ePezhman
  • 4,010
  • 7
  • 44
  • 80
3
votes
2 answers

Data linking between Excel data and Visio/PPt

Question: How can we link data from excel sheets to ppt diagrams / visio diagrams ? Diagrams here are data flow diagrams depicting data trasfer between different applications. I am aware that the excel data needs to be formatted but not sure how to…
JJunior
  • 2,831
  • 16
  • 56
  • 66
3
votes
1 answer

Using Visio to generate MySQL DDL

I have a database model diagram created in MS Visio which I would like to export to DDL file to create a MySQL database. I've already installed the MySQL ODBC driver, which I can successfully use to generate DDL file, but I have some problems…
aks
  • 292
  • 1
  • 5
  • 12