ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How can I set the screen size to always display @ 110%- a default (https://www.excelbanter.com/excel-discussion-misc-queries/29549-how-can-i-set-screen-size-always-display-%40-110%25-default.html)

Eyta

How can I set the screen size to always display @ 110%- a default
 
How can I set the default in excel so that when I open the program the view
is always at 110%?
Thanks

Dave Peterson

Saved from a previous post...

Create a new workbook.
Add this code to the ThisWorkbook module (hi, Bob!):

Option Explicit
Public WithEvents xlApp As Application
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Set xlApp = Nothing
End Sub
Private Sub Workbook_Open()
Set xlApp = Excel.Application
End Sub
Private Sub xlApp_NewWorkbook(ByVal Wb As Workbook)
Call DoTheWork(Wb)
End Sub
Private Sub xlApp_SheetActivate(ByVal Sh As Object)
Call DoTheWork(Sh.Parent)
End Sub
Private Sub xlApp_WorkbookOpen(ByVal Wb As Workbook)
Call DoTheWork(Wb)
End Sub
Private Sub DoTheWork(Wb As Workbook)
Dim myWindow As Window
For Each myWindow In Wb.Windows
myWindow.Zoom = 110
Next myWindow
End Sub

Save this file as an addin in your XLStart folder.

Each time you create a new workbook, open an existing workbook, change to a new
sheet, it'll set the zoom to 75%.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

You can read a lot more about application events at Chip Pearson's site:
http://www.cpearson.com/excel/AppEvent.htm

Eyta wrote:

How can I set the default in excel so that when I open the program the view
is always at 110%?
Thanks


--

Dave Peterson

JE McGimpsey

Check out the archives:

http://groups.google.com/advanced_gr...ugroup=*excel*

Specifically:

http://groups-beta.google.com/group/...setup/browse_f
rm/thread/9404677ace70ecab/bd303257e8605c1e


In article ,
"Eyta" wrote:

How can I set the default in excel so that when I open the program the view
is always at 110%?
Thanks



All times are GMT +1. The time now is 01:02 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com