Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
MD MD is offline
external usenet poster
 
Posts: 9
Default deactivate fullscreen

I have a workbook that uses fullscreen mode. If the user lowers the EXCEL
window to consult another application, when the user comes back, the view is
now normal (not in fullscreen). Is there a way to stop this automatic
operation of EXCEL?

MD


  #2   Report Post  
Posted to microsoft.public.excel.programming
MD MD is offline
external usenet poster
 
Posts: 9
Default deactivate fullscreen

As extra info... The reason why I use full screen is because I want all of
the toolbars to be off (hidden). Since not all user have the same toolbars
on (showing), by using fullscreen it hides them all. If you have another
way about this, I'm also open for ideas...

regards,
MD


"MD" wrote in message
...
I have a workbook that uses fullscreen mode. If the user lowers the EXCEL
window to consult another application, when the user comes back, the view
is now normal (not in fullscreen). Is there a way to stop this automatic
operation of EXCEL?

MD



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default deactivate fullscreen

No setting that does it.

--
Regards,
Tom Ogilvy

"MD" wrote in message
...
I have a workbook that uses fullscreen mode. If the user lowers the EXCEL
window to consult another application, when the user comes back, the view

is
now normal (not in fullscreen). Is there a way to stop this automatic
operation of EXCEL?

MD




  #4   Report Post  
Posted to microsoft.public.excel.programming
MD MD is offline
external usenet poster
 
Posts: 9
Default deactivate fullscreen

Found this code that solved my problem...
http://www.ozgrid.com/forum/showthread.php?t=21744
Author: Aaron blood
Since it uses a collection of the toolbars... no matter what inventory of
toolbars you have...
Thought i'd share

MD


Dim UserToolbars As New Collection
Dim AppToolbars As New Collection Private Sub Workbook_Open()
Define_Toolbar_Collections
Display_App_Toolbars
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Display_User_Toolbars
End Sub

Private Sub Define_Toolbar_Collections()
Set AppBars = Application.CommandBars
For Each tb In AppBars
If tb.Visible Then
UserToolbars.Add tb
End If
Next tb
End Sub

Private Sub Display_App_Toolbars()
On Error Resume Next
For Each tb In UserToolbars
tb.Visible = False
Next tb
For Each tb In AppToolbars
tb.Visible = True
Next tb
End Sub

Private Sub Display_User_Toolbars()
On Error Resume Next
For Each tb In AppToolbars
tb.Visible = False
Next tb
For Each tb In UserToolbars
tb.Visible = True
Next tb
End Sub


"MD" wrote in message
...
As extra info... The reason why I use full screen is because I want all
of the toolbars to be off (hidden). Since not all user have the same
toolbars on (showing), by using fullscreen it hides them all. If you have
another way about this, I'm also open for ideas...

regards,
MD


"MD" wrote in message
...
I have a workbook that uses fullscreen mode. If the user lowers the EXCEL
window to consult another application, when the user comes back, the view
is now normal (not in fullscreen). Is there a way to stop this automatic
operation of EXCEL?

MD





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
useform autosize to fullscreen problem Pierre via OfficeKB.com Excel Worksheet Functions 1 November 3rd 05 10:03 AM
FullScreen Question MD Excel Programming 0 January 6th 05 02:10 PM
FullScreen Mode Horizontal ScrollBar Missing GreenBoy Excel Programming 3 September 7th 04 07:13 PM
Fullscreen Michelle Excel Programming 1 August 13th 04 02:31 PM
Display a range fullscreen Stuart[_5_] Excel Programming 2 July 15th 04 12:36 PM


All times are GMT +1. The time now is 03:21 PM.

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

About Us

"It's about Microsoft Excel"