Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default Turn off Excel Visual Displays

Hi ,

Is there a command that would turn off all the Excel visual displays ? (The
tool bar, etc.)

I'm thinking it would be less confusing for the user .

If the macro crashes while the visual displays are off, how would I get them
on again ?

Thanks Again
Jeff


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,337
Default Turn off Excel Visual Displays

try this TOGGLE sub

Application.DisplayFullScreen = Not Application.DisplayFullScreen = True
===
"Jeff Marshall" wrote in message
...
Hi ,

Is there a command that would turn off all the Excel visual displays ?

(The
tool bar, etc.)

I'm thinking it would be less confusing for the user .

If the macro crashes while the visual displays are off, how would I get

them
on again ?

Thanks Again
Jeff




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 620
Default Turn off Excel Visual Displays

Jeff,

To add to Don's suggestion, if you put it in workbook event code you can
control as you wish.

That is

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.DisplayFullScreen = False
End Sub

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

This display will then only apply to that particular workbook.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Don Guillett" wrote in message
...
try this TOGGLE sub

Application.DisplayFullScreen = Not Application.DisplayFullScreen = True
===
"Jeff Marshall" wrote in message
...
Hi ,

Is there a command that would turn off all the Excel visual displays ?

(The
tool bar, etc.)

I'm thinking it would be less confusing for the user .

If the macro crashes while the visual displays are off, how would I get

them
on again ?

Thanks Again
Jeff






  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Turn off Excel Visual Displays

Application.ScreenUpdating = False
' code that causes the display to change
Application.ScreenUpdating = True

will turn off visual movement on the screen caused by macro activities.

However, if you want to remove elements of the interface such as toolbars
and so forth, you have to do each one explicitly, then restore them.
Generally, if your macro crashes, then your user is hosed.

I don't think most users are confused by the Excel environment.

--
Regards,
Tom Ogilvy


Jeff Marshall wrote in message
...
Hi ,

Is there a command that would turn off all the Excel visual displays ?

(The
tool bar, etc.)

I'm thinking it would be less confusing for the user .

If the macro crashes while the visual displays are off, how would I get

them
on again ?

Thanks Again
Jeff




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
inserted comment not displays in the cell it displays on top row S.Kumar Excel Worksheet Functions 1 September 22nd 09 07:32 PM
Can't turn off visual basic debugger in Excel 2003 Kennard in Albuquerque Excel Discussion (Misc queries) 1 May 3rd 09 11:07 PM
Is Visual Basic the same as Visual Studio 2008? Mike Stewart Excel Worksheet Functions 5 January 11th 09 04:58 PM
changing the visual basic in office 2003 to visual studio net bigdaddy3 Excel Discussion (Misc queries) 1 September 13th 05 10:57 AM
Formula window displays correct answer while cell displays incorre MMV Excel Worksheet Functions 3 November 10th 04 09:28 PM


All times are GMT +1. The time now is 12:55 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"