Showing/Hiding the New Visio 2010 Process Issues Window

Started by IRDC, January 13, 2010, 08:23:23 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

IRDC

Does anybody know how one can show/hide the Issues Window via code?

Visio Guy

Hi IRDC,

This worked for me:


Sub ShowIssuesWindow()
   
    Dim win As Visio.Window
    Set win = Visio.ActiveWindow.Windows.ItemFromID(Visio.VisWinTypes.visWinIDValidationIssues)
    If win.Visible = False Then
        win.Visible = True
    End If

End Sub

For articles, tips and free content, see the Visio Guy Website at http://www.visguy.com
Get my Visio Book! Using Microsoft Visio 2010