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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top