B
Bob Phillips
Lars,
I do not what code you have to zoom in and out, but all you need is a simple
Boolean variable to determine whether its small or large diagram.
Something like
Dim fDiagram1 as Boolean
Dim fDiagram2 As Boolean
etc.
Sub Zoom()
If fDiagram1 = True Then
Call ZoomOutDiagram1
Else
Call ZoomInDaigram1
End If
fDiagram1 = Not fDiagram1
End Sub
Get the idea?
I do not what code you have to zoom in and out, but all you need is a simple
Boolean variable to determine whether its small or large diagram.
Something like
Dim fDiagram1 as Boolean
Dim fDiagram2 As Boolean
etc.
Sub Zoom()
If fDiagram1 = True Then
Call ZoomOutDiagram1
Else
Call ZoomInDaigram1
End If
fDiagram1 = Not fDiagram1
End Sub
Get the idea?