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

I have an "Auto Open" macro set up that does certain
things when a user opens a file. Now, I would like them
to have the same screen area that I use (1152 by 864
pixels) so all the buttons and such fit on one screen.
Does anyone know the code how to do this, if there is a
way? It would just make it easier and users would
not "miss" anything by not having to scroll up and down
the spreadsheet.

Thanks for any response you might have.

-CJ
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 132
Default Screen Area Resolution


cj;

Try this sub

Sub try()

Application.WindowState = xlNormal
Application.Width = 520.5
Application.Height = 369
End Sub


Thanks

Greg


-----Original Message-----
I have an "Auto Open" macro set up that does certain
things when a user opens a file. Now, I would like them
to have the same screen area that I use (1152 by 864
pixels) so all the buttons and such fit on one screen.
Does anyone know the code how to do this, if there is a
way? It would just make it easier and users would
not "miss" anything by not having to scroll up and down
the spreadsheet.

Thanks for any response you might have.

-CJ
.

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Screen Area Resolution


I'm not an expert, but this code works for me....

Sheets("Introduction").Select
Range("A1:p1").Select
ActiveWindow.Zoom = True

A1:P1 will then fill the whole width of the screen.

HTH

Chris.


------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~View and post usenet messages directly from http://www.ExcelForum.com/

~~Now Available: Financial Statements.xls, a step by step guide to creating financial statements
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Screen Area Resolution

Have you used other applications that changed your screen resolution? This
would be very bad behavior. You need to change your application to be
usable at any screen resolution.

--
Regards,
Tom Ogilvy


CJ wrote in message
...
I have an "Auto Open" macro set up that does certain
things when a user opens a file. Now, I would like them
to have the same screen area that I use (1152 by 864
pixels) so all the buttons and such fit on one screen.
Does anyone know the code how to do this, if there is a
way? It would just make it easier and users would
not "miss" anything by not having to scroll up and down
the spreadsheet.

Thanks for any response you might have.

-CJ



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
Variable screen size, not resolution Molly Excel Worksheet Functions 4 June 7th 08 12:32 AM
Excel 2003 rdp screen resolution Stefan Triep Excel Discussion (Misc queries) 0 October 15th 07 12:45 PM
How to get fixed size for every screen resolution? chartSize Charts and Charting in Excel 0 October 5th 06 03:36 AM
How to change resolution of monitor/screen Glen Mettler Excel Programming 1 November 19th 03 02:37 PM
Excel screen resolution query Jeff Smith[_2_] Excel Programming 6 September 16th 03 11:33 PM


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

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"