![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Apr 2002
Posts: 20
|
I currently use the code below to make a spreadsheet go to full screen mode when opened...
Private Sub Workbook_Open() Application.DisplayFullScreen = True End Sub However, I want to make the screen return to normal view when the spreadsheet is closed. Someone did give me some code to add to the end of that listed above, but it didn't work (and i've since lost it !!). Can anyone help ?? Cheers. |
|
|
|
|
|
#2 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: Auckland, New Zealand
Posts: 4,209
|
Quote:
Private Sub Workbook_BeforeClose(Cancel As Boolean) Application.DisplayFullScreen = False End Sub |
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|