Is there a way to set zoom tool to smaller increments?

I'm used to working with a zoom that increases by 10% per click below 100%, and 20% above that. Is there a way to duplicate this? Using a drop-down menu is just too slow.

Thanks,
Ellen

Parents
No Data
Reply
  • Hello,
    Private Sub BhBp_ZoomIn()
    Application.ActiveWindow.ActiveView.Zoom = Application.ActiveWindow.ActiveView.Zoom + 1
    End Sub

    The code above Zoom in 1% more then current

    If You assign F12 to Sub BhBp_ZoomIn every pressing of F12 will increase Zoom with 1% 

    Greetings!

Children
No Data