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

Is there a VB code to turn on and off Full Sceen view?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,836
Default Macro for Full Screen

Simple:

Sub FS()
Application.DisplayFullScreen = True
End Sub

HTH,
Ryan--

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Masters" wrote:

Is there a VB code to turn on and off Full Sceen view?

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Macro for Full Screen

That is great, how can I make this Macro run automatically when the workbook
is opened up?

"ryguy7272" wrote:

Simple:

Sub FS()
Application.DisplayFullScreen = True
End Sub

HTH,
Ryan--

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Masters" wrote:

Is there a VB code to turn on and off Full Sceen view?

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,836
Default Macro for Full Screen

Just put the code in 'ThisWorkbook':

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

If this post is helpful, please click 'Yes'
Ryan--

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Masters" wrote:

That is great, how can I make this Macro run automatically when the workbook
is opened up?

"ryguy7272" wrote:

Simple:

Sub FS()
Application.DisplayFullScreen = True
End Sub

HTH,
Ryan--

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Masters" wrote:

Is there a VB code to turn on and off Full Sceen view?

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Macro for Full Screen

Here is what I got and it doesn't go to full screen when I open it???

Sub Open_()
'
' Open_ Macro
'

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

"ryguy7272" wrote:

Just put the code in 'ThisWorkbook':

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

If this post is helpful, please click 'Yes'
Ryan--

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Masters" wrote:

That is great, how can I make this Macro run automatically when the workbook
is opened up?

"ryguy7272" wrote:

Simple:

Sub FS()
Application.DisplayFullScreen = True
End Sub

HTH,
Ryan--

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Masters" wrote:

Is there a VB code to turn on and off Full Sceen view?



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,836
Default Macro for Full Screen

Alt + F11

Put the code into ThisWorkbook

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

Save and Open

HTH,
Ryan---
--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Masters" wrote:

Here is what I got and it doesn't go to full screen when I open it???

Sub Open_()
'
' Open_ Macro
'

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

"ryguy7272" wrote:

Just put the code in 'ThisWorkbook':

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

If this post is helpful, please click 'Yes'
Ryan--

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Masters" wrote:

That is great, how can I make this Macro run automatically when the workbook
is opened up?

"ryguy7272" wrote:

Simple:

Sub FS()
Application.DisplayFullScreen = True
End Sub

HTH,
Ryan--

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Masters" wrote:

Is there a VB code to turn on and off Full Sceen view?

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Macro for Full Screen


The code must reside in the ThisWorkbook module. It won't work if it
resides in any other module. Also, the name of the procedure is
"Workbook_Open", not "Open_". And, of course, it won't work in VBA
procedures are disabled.

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)

On Wed, 12 Aug 2009 15:00:01 -0700, Masters
wrote:

Here is what I got and it doesn't go to full screen when I open it???

Sub Open_()
'
' Open_ Macro
'

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

"ryguy7272" wrote:

Just put the code in 'ThisWorkbook':

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

If this post is helpful, please click 'Yes'
Ryan--

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Masters" wrote:

That is great, how can I make this Macro run automatically when the workbook
is opened up?

"ryguy7272" wrote:

Simple:

Sub FS()
Application.DisplayFullScreen = True
End Sub

HTH,
Ryan--

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Masters" wrote:

Is there a VB code to turn on and off Full Sceen view?

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
full screen Tree*Rat New Users to Excel 1 October 20th 08 09:26 AM
Full Screen Squirrel*Salad Excel Programming 1 June 24th 08 10:38 AM
Macro to display full screen automatically jh3016 Excel Discussion (Misc queries) 4 September 25th 05 01:51 AM
Veiw Full Screen ExcelMonkey[_22_] Excel Programming 1 January 25th 04 06:26 AM
Resetting Screen to Full Steve Excel Programming 0 November 5th 03 07:31 PM


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