Questions tagged [visio2013]

26 questions
5
votes
2 answers

Creating Shapes in visio using c#

Hi i need to develop an addin for creating diagram objects in visio.I am able to create the top shape but not its derived types . for EG i am able to creat Start event in visio using c#, but couldn't create Start Event of message type or others In…
Dah Sra
  • 4,107
  • 3
  • 30
  • 69
4
votes
2 answers

Create a visio 2013 file in java

I want to create a .vsdx file (drawing) using Java. Visio 2013 uses Open Packaging Convention. I don't know from where to start, currently referring this link…
monu
  • 835
  • 2
  • 9
  • 14
4
votes
2 answers

Padding size of Crow's Foot Attribute in Visio 2013?

Just a simple question from me, have been searched for hours but didn't find any. I'm making a database design using Crow's Foot Database Notation in MS Visio 2013, Here's my design It looks that the padding of each attributes with their…
iiandskater
  • 41
  • 1
  • 4
2
votes
1 answer

The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT))

I have an application which opens an Visio file .VSD and copies some jpeg images onto the VSD file. I am using Visio 2013, it works fine with this version but I have another client machine where I have only exe of this application(not complete code…
Puneeth
  • 419
  • 1
  • 6
  • 18
2
votes
2 answers

Filling a shape of visio with color in c#

Hi i am creating Shapes of visio2013 using c# .Now i need to fill the shape with some colors using c# i tried the below codes but nothing makes sense :( :( Visio.Cell cqellname; cqellname = shape.get_CellsSRC( …
Dah Sra
  • 4,107
  • 3
  • 30
  • 69
1
vote
1 answer

Visio: Many database notation for designing a database

I am learning database design and trying to model using Visio 2013. When I want to create database model, I came across the following database notation in Visio 2013: 1) Crow's Foot database notation 2) Chen's database notation 3) UML…
CuriousMind
  • 8,301
  • 22
  • 65
  • 134
1
vote
1 answer

How to hide Visio 2013 when using interop assembly in PowerShell

I'm willing to run Visio 2013 silently through PowerShell. At the moment I use the following code: Add-Type -Path 'Microsoft.Office.Interop.Visio.dll' $visio = New-Object Microsoft.Office.Interop.Visio.ApplicationClass $visio.Visible =…
Chris
  • 935
  • 3
  • 10
  • 21
1
vote
1 answer

Visual Paradigm;import from Visio 2013

I use Microsoft visio 2013 and Visual Paradigm.I want to import an activity diagram that is created by visio into visual paradigm.Here, Versatile Output Formats of visual paradigm says: Carry on software design by importing legacy design from Visio…
hasanghaforian
  • 13,858
  • 11
  • 76
  • 167
1
vote
1 answer

Get/ Set User Shape data in Visio 2013 with C#

I would like to get / set my shape data properties in C# of my own object or an already created object with some shape data defined. Data=shape.Cells["User.Level"].ToString(); I have tried this and no result. Also this: …
ronconsoda
  • 117
  • 3
  • 15
1
vote
1 answer

Connector shape in Crow's Foot Diagram in Visio 2013

How to connect one entity with its sub-entities? For example, I have an entity named PEOPLE. PEOPLE has two sub-entities, TEACHER and STUDENT. In old version Visio, there are a 'Category' shape and a 'Category to child' connector that allow to add…
1
vote
1 answer

Some shapes missing Name attribute in XML

I am trying to write a C# app which reads in a .vsdx file. The XML below is the page from one of my files. Only a few Shape elements have a Name and NameU attribute. Does anyone know why this is or how it can be fixed? All of the Shape elements…
Maddie Lowe
  • 73
  • 1
  • 5
1
vote
1 answer

How to print Shape Data in Microsoft Visio 2013?

My company has a Visio document that displays a proposed server relationship structure. For each 3D server shape, we have added text to the shape data, e.g. IP address, Server Name, RAM, Service Tag, etc. We would like to be able to print the shape…
PerPlexSystem
  • 704
  • 1
  • 15
  • 30
1
vote
1 answer

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 on reloading the same file it is throwing "Error…
user1238425
  • 31
  • 1
  • 4
1
vote
1 answer

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()); visioControl1.Document.SaveAs(temppath + filename); //Error! This works fine…
JleruOHeP
  • 10,106
  • 3
  • 45
  • 71
0
votes
1 answer

How to get VDX format from VSDX using Visio 2013 or higher?

Starting from Microsoft Visio 2013 support for VSD documents has been ended. Our App has a requirement to convert VSDX to VDX using Visio 2013 but I couldn’t find a way to do. I tried to use Visio interop DLL to open invisible Visio App and tried…
1
2