Visio Guy

Visio Discussions => Visio 2010 Issues => Topic started by: IRDC on January 13, 2010, 08:23:23 AM

Title: Showing/Hiding the New Visio 2010 Process Issues Window
Post by: IRDC on January 13, 2010, 08:23:23 AM
Does anybody know how one can show/hide the Issues Window via code?
Title: Re: Showing/Hiding the New Visio 2010 Process Issues Window
Post by: Visio Guy on January 13, 2010, 01:22:41 PM
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

Title: Re: Showing/Hiding the New Visio 2010 Process Issues Window
Post by: IRDC on January 13, 2010, 02:04:31 PM
Works fine. Thank you.