Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Insert a new page and zoom it to 75% with VBA

Status
Not open for further replies.

mmtraining

IS-IT--Management
Mar 18, 2002
104
DE
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.
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 :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top