visio

Exporting Entity-Relationship-Diagram from SQL with Visio 2010 (Professional Plus)

孤人 提交于 2019-12-23 17:36:09
问题 I'm searching the opposite solution to the question exporting SQL from a Viso diagram. I have the SQL statement for the creation of multiple tables of a MySQL database. Is there a way to use the Reverse-Engineering feature of Visio 2010 to create a diagram thereof? I'm wondering if it is possible to create a Access database from the SQL statement (MySQL) where Visio could connect ... Alternative I'll try to use another MySQL database, create the tables there, and try to connect with Visio to

save and close visio documents visual basic macro

我的未来我决定 提交于 2019-12-23 17:26:21
问题 I want to create a visio page, add some shapes, store it with a given filename and close it. Currently, always the object/template toolbar is active and thus stored under the given filename. What is the best way to store the current drawing? thanks Dim visioApp, visioPage as Object Set visioApp = CreateObject("visio.application") visioApp.Documents.AddEx ("") Set visioPage = visioApp.ActiveWindow.Page Set visioStencil = visioApp.Documents.Add("BASFLO_M.VSS") ' add shapes visioApp

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

六眼飞鱼酱① 提交于 2019-12-23 10:07:59
问题 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 ribbon.xml is practically the same, so that's not a problem at all. However, I can't seem to find any way to add a custom panel when a Visio document is opened. So far I have this in Visio to know if a document is opened/created/changed: private void

Using Visio to generate MySQL DDL

时光怂恿深爱的人放手 提交于 2019-12-22 11:25:57
问题 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 anyway. Visio puts quotation marks around the table names which are also reserved words (like user). This is not OK, since MySQL uses backticks (`) and not quotation marks (") for this purpose. MySQL ODBC driver also changes the BLOB data type to

Unable to install Microsoft Visio 2016 on server 2012

南笙酒味 提交于 2019-12-22 09:56:46
问题 We had successfully installed Microsoft Office 2016 on new server,But we were unable to install Microsoft Visio 2016 on this machine.We were getting following error:"We found a problem! We're sorry, Office Click-to-Run installer encountered a problem because you have these Windows Installer based Office programs installed on your computer. Microsoft Office Professional Plus 2013 Click-to-Run and Windows Installer editions of Office programs don't get along for this version, so you can only

generate visio diagram on the fly with .NET

寵の児 提交于 2019-12-21 09:24:34
问题 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 to generate this on the fly. 回答1: There is VisioAutomation on GitHub. If you have Visio installed it can automate the generation of a diagram. If you can model the diagram you want as a directed graph then it can automatically layout the graph for you (using MSAGL). Here is a basic example of

vba programming for visio

心已入冬 提交于 2019-12-21 06:39:27
问题 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 learn VBA for modification in the pre-defined shape. While searching in google, It shows the only results for excel VBA programming. Is it same for visio also. Please help me to get the source for the learning the VBA programming for MS VISIO. So,

How to generate MS Visio diagram automatically? [closed]

。_饼干妹妹 提交于 2019-12-21 03:42:12
问题 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 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. 回答1: graphviz is pretty

UML diagram shapes missing on Visio 2013

时光毁灭记忆、已成空白 提交于 2019-12-20 09:27:26
问题 I have installed Visio 2013 Standard and I'm trying to create an UML diagram. I choose the "UML class" template but when it opens, the Shapes panel is empty. As recomended, I go to "More Shapes" menu, but cannot find anything related to UML. Have anyone had this problem and got a solution? Thanks 回答1: Software & Database is usually not in the Standard edition of Visio, only the Pro version. Try looking here for some templates that will work in standard edition UML 2.0 Diagrams and Shape

Catch WindowTurnedToPage Event in a Visio AddIn project

让人想犯罪 __ 提交于 2019-12-20 07:43:14
问题 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