ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   can't undo Full View with macro (https://www.excelbanter.com/excel-programming/405054-cant-undo-full-view-macro.html)

gifer[_2_]

can't undo Full View with macro
 
I have a file that uses Workbook_open () macro to set up a page to Full view
when my users open the file. That leaves the screen nice and clean with only
text boxes linked to macros for the user to click on.

Problem is when they are finished using the file, I use Workbook_BeforeClose
to try and restore the screen to normal view. I can get the sheet tabs and
row/column headings to show up, but Application.DisplayFullScreen = False
does nothing as far as getting the menu bar to appear again. Is there some
other more direct command to specifically get the menu to show up?

Thanks!

Excel2003/Windows 2000NT



JLGWhiz

can't undo Full View with macro
 
You might not need all of these, but you can modify as required.

Sub reset()
With Application
.DisplayFullScreen = False
.DisplayFormulaBar = True
.DisplayStatusBar = True
End With
With ActiveWindow 'This with statement sets everything to normal
.DisplayHorizontalScrollBar = True
.DisplayVerticalScrollBar = True
.DisplayWorkbookTabs = True
.DisplayHeadings = True
.DisplayGridlines = True
End With
End Sub

"gifer" wrote:

I have a file that uses Workbook_open () macro to set up a page to Full view
when my users open the file. That leaves the screen nice and clean with only
text boxes linked to macros for the user to click on.

Problem is when they are finished using the file, I use Workbook_BeforeClose
to try and restore the screen to normal view. I can get the sheet tabs and
row/column headings to show up, but Application.DisplayFullScreen = False
does nothing as far as getting the menu bar to appear again. Is there some
other more direct command to specifically get the menu to show up?

Thanks!

Excel2003/Windows 2000NT




Gord Dibben

can't undo Full View with macro
 
You may need this one

Application.CommandBars("Worksheet Menu Bar").Enabled = True


Gord Dibben MS Excel MVP

On Fri, 25 Jan 2008 16:05:00 -0800, JLGWhiz
wrote:

You might not need all of these, but you can modify as required.

Sub reset()
With Application
.DisplayFullScreen = False
.DisplayFormulaBar = True
.DisplayStatusBar = True
End With
With ActiveWindow 'This with statement sets everything to normal
.DisplayHorizontalScrollBar = True
.DisplayVerticalScrollBar = True
.DisplayWorkbookTabs = True
.DisplayHeadings = True
.DisplayGridlines = True
End With
End Sub

"gifer" wrote:

I have a file that uses Workbook_open () macro to set up a page to Full view
when my users open the file. That leaves the screen nice and clean with only
text boxes linked to macros for the user to click on.

Problem is when they are finished using the file, I use Workbook_BeforeClose
to try and restore the screen to normal view. I can get the sheet tabs and
row/column headings to show up, but Application.DisplayFullScreen = False
does nothing as far as getting the menu bar to appear again. Is there some
other more direct command to specifically get the menu to show up?

Thanks!

Excel2003/Windows 2000NT





VBA_Newbie79[_2_]

can't undo Full View with macro
 
gifer,
I am having the same trouble you are. I have tried the suggestions by
JLGWhiz and Gord, but that doesn't seem to be working. Have you been able to
figure out why DisplayFullScreen will not turn off, programmatically?

"gifer" wrote:

I have a file that uses Workbook_open () macro to set up a page to Full view
when my users open the file. That leaves the screen nice and clean with only
text boxes linked to macros for the user to click on.

Problem is when they are finished using the file, I use Workbook_BeforeClose
to try and restore the screen to normal view. I can get the sheet tabs and
row/column headings to show up, but Application.DisplayFullScreen = False
does nothing as far as getting the menu bar to appear again. Is there some
other more direct command to specifically get the menu to show up?

Thanks!

Excel2003/Windows 2000NT





All times are GMT +1. The time now is 03:32 AM.

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