mmtraining
IS-IT--Management
I am using VBA in Visio 97.
I have worked out how to insert a new page, works wonderfully. Now I want to zoom the page, so it shows 75 %. HO
This is what I've got so far. All very nice, but the new page insists on coming up at 32% which is a bit small for my lot.
Thanx in advance for any help,
Carol
Berlin, Germany
I have worked out how to insert a new page, works wonderfully. Now I want to zoom the page, so it shows 75 %. HO
This is what I've got so far. All very nice, but the new page insists on coming up at 32% which is a bit small for my lot.
Code:
Sub Neue_Seite()
Dim i As Integer
i = Application.ActiveDocument.Pages.Count
Application.ActiveDocument.Pages.Add
ActivePage.Name = "Seite " & i
End Sub
Thanx in advance for any help,
Carol
Berlin, Germany