S
Stephen Dolley
How do I handle the SelectionChanged event for a Visio window?
I am trying:
Private Sub Window_SelectionChanged(ByVal Window As Visio.Window)
End Sub
but selecting and deselecting shapes does not result in this subroutine
running. However I can trap the AddShape event OK using:
Private Sub Document_ShapeAdded(ByVal Shape As Visio.IVShape)
End Sub
What am I doing wrong?
I am trying:
Private Sub Window_SelectionChanged(ByVal Window As Visio.Window)
End Sub
but selecting and deselecting shapes does not result in this subroutine
running. However I can trap the AddShape event OK using:
Private Sub Document_ShapeAdded(ByVal Shape As Visio.IVShape)
End Sub
What am I doing wrong?