Determining Visio version

Started by Jennifer, December 10, 2016, 07:57:12 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Jennifer

I'm pretty sure I am running Visio 2010, but how can I verify that for sure? if I click on the Help icon (question mark in blue circle), it says, "This page is unavailable".
Using Visio 2019, part of Office 365 on Windows 10

Thomas Winkel


Jennifer

#2
Thanks.

At the top, it says Visio 2010. In the middle it says Version 14.0.7173.5000 (32 bit). Does that mean Version 14 of Version 2010?

I attached a screen capture, but I don't know how to embed it in the post.

Update: Aha! I see that it is embedded below. I wonder why that didn't show when I clicked on Preview?
Using Visio 2019, part of Office 365 on Windows 10

Thomas Winkel

No, Visio 2010 is the name of version 14.
Visio 2013 is version 15, I guess.
The version can be used in code like this:

Private Sub Document_DocumentOpened(ByVal doc As IVDocument)
    'No Ribbon support before Visio 2010
    If Application.Version >= 14 Then
        UI.ribbonStart
    End If
End Sub

Surrogate

Quote from: wikiVersions
Visio v1.0 (Standard, Lite, Home)
Visio v2.0
Visio v3.0
Visio v4.0 (Standard, Technical)
Visio v4.1 (Standard, Technical)
Visio v4.5 (Standard, Professional, Technical)
Visio v5.0 (Standard, Professional, Technical)
Visio 2000 (v6.0; Standard, Professional, Technical, Enterprise) – later updated to SP1 and Microsoft branding after Visio Corporation's acquisition
Visio 2002 (v10.0; Standard, Professional)
Visio for Enterprise Architects 2003 (VEA 2003) – based on Visio 2002 and included with Visual Studio .NET 2003 Enterprise Architect edition
Office Visio 2003 (v11.0; Standard, Professional)
Office Visio for Enterprise Architects 2005 (VEA 2005) – based on Visio 2003 and included with Visual Studio 2005 Team Suite and Team Architect editions
Office Visio 2007 (v12.0; Standard, Professional)
Visio 2010 (v14.0; Standard, Professional, Premium)
Visio 2013 (v15.0; Standard, Professional)
Visio 2016 (v16.0; Standard, Professional, Office 365)

There are no Visio versions 7, 8, or 9, because after Microsoft acquired and branded Visio as a Microsoft Office product, the Visio version numbers followed the Office version numbers. Version 13 was skipped.

Visio does not have a Mac OS X version which has led to the growth of several third party applications which can open and edit Visio files on Mac.

On 7 May 2001, Microsoft introduced Visio Enterprise Network Tools (VENT), an add-on for Visio 2002 scheduled for release on 1 July 2001, and Visio Network Center, a subscription-based web service for IT professionals who use Microsoft Visio for computer network diagramming. VENT was discontinued on 1 July 2002 because of very low customer demand.

Jennifer

Quote from: Thomas Winkel on December 10, 2016, 11:26:08 PM
No, Visio 2010 is the name of version 14.

That makes sense  :P  M$FT logic has always escaped me.

Thanks.
Using Visio 2019, part of Office 365 on Windows 10