Screen Size Control

  • Thread starter Thread starter Varne
  • Start date Start date
V

Varne

Hi

When I activate page 2 I want the screen to becaome larger. That is the
problem.

By hiding sheet tabs and navigating to sheets with macros it is possible.
However the user can unhide sheet tabs.

could any one assist?

Regards
M Varnendra
 
Hi

On sheet2, paste the following 2 macros onto the Sheet code

Private Sub Worksheet_Activate()
ActiveWindow.Zoom = 200
End Sub

Private Sub Worksheet_Deactivate()
ActiveWindow.Zoom = 100
End Sub

Set the Zoom levels to whatever you wish.

To carry out the task, Copy the 2 macros>Right click on tab for Sheet2>View
code>Paste in large white panel to right of screen.
 
Back
Top