Size Of Screen

  • Thread starter Thread starter Andrew Turek
  • Start date Start date
A

Andrew Turek

I have a worksheet which requires a screen of 1024 * 768. It has
ThisWorkbook_open macro which automatically sets Full Screen, but i
there any VBA code I could add to it which would reset the scree
size?

There is also a Quit macro which switches off Full Screen - is ther an
code which could reset the screen size?

And while I am on: is there any way I can set Excel so that the Formul
Bar is always visible when I start a session?

Thanks, one and all
 
the formula bar can be toggled with:

Application.DisplayFormulaBar = False
Application.DisplayFormulaBar = True

put the 'true' part in workbook's open event
 
if you are only talking about toggling the 'full screen', then you ca
create a sub procedure called auto_close() and put the following lin
in it:

Application.DisplayFullScreen = False

i do not know how to change the resolution back to whatever it wa
earlier
 
Thanks for these tips. What I meant about the Formula Bar is that I
would like it to be open by default when I launch Excel, which at the
moment it is not - any bright ideas?
 
i can't understand you question, so my answer might sound kind o
basic.

the View menu has an option for toggling Formula Bar. it will ensur
that the formula bar is visible everytime you open excel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top