Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Full Screen Mode

While i have more than 1 excel workbooks open i'd like
only one of them to work in full screen mode.
When i change to another workbook i'd like to appear on normal mode with
taskbars and everything.
I also want this workbook operating only in full mode which should only
change via vba so
nobody can change it but me.

Do i want that much?

Thanx


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 576
Default Full Screen Mode

Go to the VBE and select the ThisWorkbookModule.
Paste in this code:

Private Sub Workbook_Activate()
Application.DisplayFullScreen = True
End Sub

Private Sub Workbook_Deactivate()
Application.DisplayFullScreen = False
End Sub

This will toggle when the workbook is activated and deactivated.

--
sb
"Hatzipavlis Stratos" wrote in message
...
While i have more than 1 excel workbooks open i'd like
only one of them to work in full screen mode.
When i change to another workbook i'd like to appear on normal mode with
taskbars and everything.
I also want this workbook operating only in full mode which should only
change via vba so
nobody can change it but me.

Do i want that much?

Thanx




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
I can only see spreadsheet in 'full screen' mode? becva Excel Discussion (Misc queries) 3 April 2nd 23 07:37 PM
how to disable automatic full screen mode? Paul Kraemer Excel Discussion (Misc queries) 1 February 5th 10 05:49 PM
Excel workbook contents only visible in Full Screen mode ... Sharon R. Excel Discussion (Misc queries) 0 April 2nd 08 12:26 PM
full screen mode Victor Excel Discussion (Misc queries) 5 August 31st 07 04:12 PM
Disable right mouse click when in Full screen mode clayton Excel Discussion (Misc queries) 2 March 22nd 06 02:53 AM


All times are GMT +1. The time now is 09:59 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"