Visio is a diagramming tool included in the Microsoft Office suite.
0
votes
0answers
18 views
Remove old macro and Create a new macro in visio file programmatically (C#)
Hi Requirement is like this
1. Remove existing macro in the visio document.
2. Add new macro in that document.
string vdwFileName = @"C:\VisioHeaderXml\HeaderOnly.vdx";
string ...
0
votes
0answers
6 views
Cannot install Project 2013 or Visio 2013 [migrated]
On my new pc with Win8 Pro x64, I installed Office 2013 Professional Pro 32bit (because I don't want pain with word/outlook addins)
Office runs ok without problems.
Now I try to install Project 2013 ...
0
votes
1answer
37 views
Counting shapes by name in Visio
I want to count different types of shapes in my diagram, and I can't seem to get that done. I think I have to code something for that.
I use Visio 2007 for that.
I have a flow chart with mostly ...
0
votes
0answers
40 views
File not found exception on saving file as vsd
I am using visio 2013 drawing control. When I save a file as vsd it is throwing exception "File not found". However file is saved on given location.
Since file is saved , I ignore the exception but ...
0
votes
0answers
41 views
How to load a rack diagram from excel database
In organization chart...every shape can be linked to excel row of data
(excel serves as a database for the chart which data can be edited from excel)
I'd like to load a rack diagram with servers ...
0
votes
1answer
24 views
how to make the connection between group shape id in Visio?
I am facing a problem when I using Xpath to read the Visio xml file (.vdx).
I create a custom stencil by grouping two sub shapes. For instance Shape A is consist of two sub shapes b and c. When I ...
0
votes
1answer
47 views
Insert Image as a shape in Visio - VBA
I want to be able to import an image as a shape in Visio using VBA. I've tried to insert an image using the following, but it doesn't work...
myShape.Import(imagePath)
However, ...
0
votes
1answer
45 views
How do I add a 64-bit Visio Drawing control in VS 2012?
We are using an embedded Visio drawing control in our application as an automated visualization tool to represent system heirarchies. Code-behind uses Visio interop to create and lay out all of the ...
0
votes
1answer
36 views
How to resize my UML class diagram on MS Visio'07
How do i resize the class diagram in Visio? My operations have many parameters so the class diagram becomes too long. I need to resize the height of it,how can i do that?
-1
votes
0answers
39 views
Import Erwin file to Visio [closed]
I want to import my existing .erwin or .er1 file to Visio 2010. I have seen the option in Visio to Import Erx file. How to get this Erx file? I have tried by by selecting Export to Other Format then ...
0
votes
1answer
22 views
Resize group of lines in visio
I create several lines and arcs in Microsoft Visio, and then I group them. When I try to re-size them, they lose their proportions.
I have tried to solve the problem by selecting 'Aspect ratio' in ...
0
votes
0answers
39 views
How to generate pseudocode from flowchart and vice versa
FYI,I have googled well, but couldn't find any clear way.
I have drawn a flowchart in MS visio. How to generate pseudocode from it?
Is there any way in visio or any other software to do that?
0
votes
2answers
65 views
direct access to visio shape does not work
I have a question regarding accessing a shape in visio 2003
...
dim ovp as visio.page
dim ovs as visio.shape
...
set ovs = ovp.shapes("#shapename#")
...do something with the shape
This sometimes ...
-1
votes
0answers
25 views
Programs like Visio for a Visual editor with database connection [closed]
I need a program like Visio but free. The only function that's very important for me is the database connection from shapes to data. I want to configure a visual editor for make maps with several ...
0
votes
3answers
346 views
UML diagram shapes missing on Visio 2013
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" ...
2
votes
1answer
77 views
Windowless ActiveX controls are not supported exception on 64Bit visio
I am extending the compatibility of my application from visio 32-bit to visio 64 bit. I am using visio 2013 on win7(64) machine. I am getting exception of windowless ActiveX control is not supported. ...
0
votes
0answers
49 views
VISIO 2013 Automation for OrgChart programatically creating VSDX
Trying to create a orgchart on server in vsdx format.
Is there any Visio 2013 SDK which assist build the Org chart ground up .I opened the Visio 2013 vsdx file and found it extremely complicated with ...
0
votes
0answers
34 views
how to specify the return type of a class to a custom java class in visio class diagram?
Say, I've got a custom class named Test:
class Test {
}
What I want is to create a class in a class diagram in visio, whose method is presented like +get(addr:String):Test, but when I go to ...
-2
votes
0answers
119 views
How do I Import sequential workflow steps from Excel into Visio 2010 [closed]
Just interviewed employees to document exactly what they do for a given task. I used Excel 2013 to list the process steps for the task in sequential order (top down in one column).
I need to ...
0
votes
0answers
77 views
Open source drawing software
We need to standardize the high level drawings for our software projects such as component dependency diagram, conceptual data model, infrastructure & system integration, etc. So, we need to ...
1
vote
1answer
76 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 ...
0
votes
0answers
242 views
Microsoft Visio Viewer Plugin for IE does not work
I recently uninstalled from my computer Microsoft Visio 2007 and installed Microsoft Visio Viewer 2013 plugin for IE in order to see Visio files in IE but I can't see nothing... IE won't open these ...
1
vote
0answers
76 views
“Class not registered” exception when using the “AxDrawingControl” from the dll “AxInterop.Microsoft.Office.Interop.VisOcx.dll” (v4.0.30319)
I am getting the below exception when using the “AxDrawingControl” from the dll “AxInterop.Microsoft.Office.Interop.VisOcx.dll” (v4.0.30319) in my application:
...
0
votes
1answer
106 views
How to read Shape properties in Visio
namespace VisioEventsExample
{
using System;
using Microsoft.Office.Interop.Visio;
class Program
{
public static void Main(string[] args)
{
// Open up one ...
1
vote
0answers
68 views
Can you import a visio sharepoint workflow template directly into Visual studio without using Designer?
We are trying to determine if it is possible to import a workflow directly from Visio to Visual Studio without using SharePoint Designer. A comment here: ...
0
votes
1answer
118 views
MS Visio - Create/Insert a new Page/Tab in C#
I have searched nearly everywhere, but cannot find a way of creating/inserting a new Page/Tab in C# within a Visio document. I recorded a VB Macro of creating a new page within a document, and it is ...
0
votes
1answer
150 views
UML Class Diagram Primary Key in Visio 2007
How do I show Primary and Foreign keys in Visio 2007? I'm completely stumped. All my research so far shows how to do it in 2003 but nothing for 2007.
Thank You in advance for any help.
1
vote
1answer
26 views
Automaticaly update text in Visio diagrams
I have build several Visio diagrams and posted them on my web server as .htm. Now I would like to make a script that update the values of the labels on the in the shapes automatically once on every ...
0
votes
0answers
43 views
Importing form controls on Excel to Visio
Not sure if I can ask this doubt in StackOverflow as its not directly related to the coding.
Still any suggestions or ideas would help a lot.
Query - I have form controls like radio buttons, drop ...
0
votes
1answer
163 views
Visio Foreign Key
I am designing a Entity relationship diagram using Microsoft Visio 2010 and using Database Model Diagram.
I have 2 tables, Student table which has Student ID (Primary key) and Course ID (should be ...
0
votes
1answer
227 views
Official Documentation and Database Properties Window in Visio 2013
Where is the Database Properties window in Visio 2013? I see nowhere to set properties for an entity (keys and attributes). There's no official documentation from Microsoft that I can find.
0
votes
1answer
47 views
Tweak Visio 2013 context menu
Is it possible to disable some functions from the context menu in Visio 2013 for visio control?
I want to remove buttons for painting and changing shapes as I want to use only specific shapes in my ...
0
votes
1answer
15 views
DFDs much larger than a page
i am designing DFDs for a project management software. One process when split down on level two has too many sub processes with too many external actors. One page is getting too short for designing. ...
1
vote
0answers
154 views
visio 2013 vba user input - selecting a shape
I need to be able to select a shape (as user input) and then manipulate with it's PinX and PinY. I am stuck with getting user input where the user selects a shape after a prompt.
Thanks for your ...
0
votes
1answer
41 views
Visio master style and functionality ignored when used in drawing [closed]
I'm using Visio 2010 and I've created a new Master.
The master contains a central shape and a few shapes attached to it, with shape data for each separate shape.
The width of the central shape ...
0
votes
0answers
138 views
Save visio 2013 diagram in the vsd format
How to save diagramm in the vsd format using visio 2013 in c# visio control?
I am using the following code:
string filename = String.Format("{0}.vsd", Guid.NewGuid());
...
0
votes
1answer
33 views
sharepoint list wont refresh properly
hi I'm having troubles with the SharePoint list, I've got the list connected to a Visio, and when I'm on-premise, it update fast, I mean I change the list, click refresh in the Visio app and it's ...
0
votes
0answers
76 views
PHP-to-UML Converter [closed]
1) Can anyone recommend any PHP-to-UML converting tools that creates professional looking block diagrams?
2) What would be the best FREE or PAID tools for PHP-to-UML converting?
Thanks
Alex
1
vote
0answers
184 views
Programming with Visio in SharePoint, create new Outlook meeting in ?Javascript?
I am doing a little Visio experimenting, and what I want to do is show a Visio file in SharePoint, the Visio file shows a layout of a building, with meeting rooms and their status + ability to book ...
0
votes
1answer
101 views
sharepoint javascript on click shape
I need to add an onclick event to shapes from Visio in SharePoint, with JavaScript, like the vwaControl handler shapeselectionchanged but on click, is there any way I could do that?
I'm sorry about ...
0
votes
1answer
435 views
Visio 2010 UML Sequence diagram - lifeline does not have enough connectors
I am using Microsoft Visio 2010.
I am drawing a UML sequence diagram.
I added object Lifeline and started drawing diagram. Because the diagram is very long, at one point there would not be any more ...
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
1answer
113 views
VBScript automating Visio: How to move dynamic glue to another shape?
I am currently triying to automate Visio by using VBScripts.
I have a visio shape "Start" having an existing connect "Verbindung" pointing to "BeginX" and targeting to "PosX" (therefore having a ...
0
votes
0answers
10 views
error L1005: 'Table1' : Table has no columns defined in VISIO
I have a visio file that models a database. I added a view to the
project but then decided to delete it again. I simply hit the delete
key after which I got a dialog saying: "Remove selected item from ...
-1
votes
1answer
82 views
How to add custom task panes in visio 2010 using c#? [closed]
I'm trying to Add a custom taskpane in a Visio office application. But everytime it is throwing exception:
Argument Null Exception , Value cannot be null , parameter -"o".
5
votes
1answer
191 views
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 ...
1
vote
0answers
246 views
Visio 2013: How to reduce width of built-in UML class shape?
I drew a class diagram of the type 'UML static structure' with Visio 2013. Now I would like to reduce the width of the class shapes in the diagram. I removed the size protection in the developer tools ...
0
votes
0answers
64 views
visio avoiding straight connectors to cross each other
Hi how can you make visio reorganise your diagram in order for the connector between your shapes not cross each other en not share the same lines ? I am talking about an option that is like layout ...
1
vote
0answers
74 views
Visio 2010: Moving Multiple Connectors, Sequential Diagram
I am trying to move multiple connectors that connect lifelines of objects, but the connectors become unglued if I select more than one and move them. Is there a way to move all of the selected steps ...
0
votes
1answer
231 views
Visio - Reverse Engineering a Database Model from an Azure SQL Server DB — Crashing
In the Microsoft SQL Server Setup for database drivers, I have checked off SQL Server, SQL Server Native Client 10.0, and SQL Server Native Client 11.0.
I have created 6 data sources, one for each ...



