visio

Documenting a dependency tree [closed]

末鹿安然 提交于 2019-12-04 04:36:58
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . 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 drawing. 回答1: As a start, try Dependency Visualizer. I've also used GraphViz's Dot and some custom code for simple

Shape connectors in Visio

*爱你&永不变心* 提交于 2019-12-04 01:54:52
问题 I'm writing an Add-In to Visio 2010 in Studio 2010 on C#. I need to read a diagram currently opened in Visio. I know how to read shapes of the diagram. The question is if I have a shape object, which properties can give me coordinates of the shape on the page and other shapes (if any), the current one is connected with, if I have a connector object, which properties can give me shapes it connects and direction of the connection. 回答1: Connections in Visio are handled through Connect objects.

How to generate MS Visio diagram automatically? [closed]

烈酒焚心 提交于 2019-12-03 11:04:27
I have some sort of a table describing a graph of dependencies. Is there any easy way to convert it into a MS Visio diagram? Like a .CSV format for Excel... If it is not possible with MS Visio, then is there any software which draws a diagram from a list of graph dependencies? Thank you. graphviz is pretty much geared for this sort of thing. I assume you're on Windows since you asked about Visio, so here are the Windows binaries for it. If your using a newer version of Visio (2003+) you should use the Reverse engineer tool for databases to start your diagram. It will suck all the db tables and

Reverse Engineering a C# Solution

冷暖自知 提交于 2019-12-03 07:47:53
I know Visual Studio 2010 Ultimate has some abilities, and I would normally do this by instinct, but I am on a very tight schedule. I also have Visio 2010 installed and integrated into VS, but its reverse engineer function doesn't seem to do much, and has to be run on a per project basis, and a hindrance here is the solution structure, with several solution folders each holding a multitude of projects. I would like some advice on how to go about reverse engineering a C# solution into dependency diagrams, sequence diagrams and class diagrams. If you use Visual Studio, the 2010 Ultimate edition

What is a good Visio Enterprise Architect replacement? [closed]

梦想与她 提交于 2019-12-03 06:53:09
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I've been using Visio 2002/2003 Enterprise Architect to do my database schema design visually and then forward-generate the DDL to create the database. I wanted to switch to Visio 2007, but while it does have database diagramming support, it doesn't have the ability to generate DDL. Bummer. I am really

What is a good Visio Enterprise Architect replacement? [closed]

社会主义新天地 提交于 2019-12-02 21:29:18
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. I've been using Visio 2002/2003 Enterprise Architect to do my database schema design visually and then forward-generate the DDL to create the database. I wanted to switch to Visio 2007, but while it does have database diagramming support, it doesn't have the ability to generate DDL. Bummer. I am really disappointed because it seems like Microsoft has completely abandoned this feature. You can't do it in Visual Studio

Reading the contents of Microsoft Visio (2010) doc in IronPython

别说谁变了你拦得住时间么 提交于 2019-12-02 19:41:10
问题 I have an assignment to write a program in IronPython, that reads a Visio (2010) Document, and outputs in CMD what objects are in the active page, and how they are connected to each other. So far, I have managed to open the Visio Document, but I can't display what's in it. This is my code until now: import sys import clr import System clr.AddReference("Microsoft.Office.Interop.Visio") import Microsoft.Office.Interop.Visio IVisio = Microsoft.Office.Interop.Visio visapp = IVisio

Reading the contents of Microsoft Visio (2010) doc in IronPython

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-02 09:32:11
I have an assignment to write a program in IronPython, that reads a Visio (2010) Document, and outputs in CMD what objects are in the active page, and how they are connected to each other. So far, I have managed to open the Visio Document, but I can't display what's in it. This is my code until now: import sys import clr import System clr.AddReference("Microsoft.Office.Interop.Visio") import Microsoft.Office.Interop.Visio IVisio = Microsoft.Office.Interop.Visio visapp = IVisio.ApplicationClass() doc = visapp.Documents.Open("C:\\Users\\hari\\Desktop\\PythonExamples\\helloworld.vsd") page =

Catch WindowTurnedToPage Event in a Visio AddIn project

倖福魔咒の 提交于 2019-12-02 08:27:50
I'm trying to execute some code when the user swap between the pages of a visio window. So i tried to catch the WindowTurnedToPage event, but it simply don't work. Other events from his family can be catched, and they respond when they should. But WindowTurnedToPage and BeforeWindowPageTurn don't respond. private void InternalStartup() { this.Startup += new System.EventHandler(ThisAddIn_Startup); this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown); Application.Window.WindowTurnedToPage += new Visio.EWindow_WindowTurnedToPageEventHandler(Window_WindowTurnedToPage); } private void

VBA Macros: Exporting Visio Shape Report into New Excel File, then Creating a Pivot Table

橙三吉。 提交于 2019-12-02 07:42:25
So basically, I have a Visio file that has lots of shapes and data. I'm trying to create a shape report into a new excel file, and then have the excel file turn the exported data into a pivot table programmatically. I have a macro running in Visio that generates the excel file with data in normal table form already. I want to be able to run a macro in Visio that activates the excel window of exported data and runs a macro to make it into a pivot table. However, any excel macro code I put into my visio macro modules is unrecognized (e.g. "Range"), presumably because they're not words recognized