Excel VBA (DisplayFullscreen and the Windows Toolbar).

  • Thread starter Thread starter jim c.
  • Start date Start date
J

jim c.

this is what I use to maximize userform... maybe something
here you can use
***********************************************************
Sub ShowAppSize()
Application.WindowState = xlMaximized
appWidth = Application.Width
appHeight = Application.Height
With UserForm1
.Height = appHeight
.Width = appWidth
End With
End Sub

***********************************************************

hope this helps...
 
I'm not using any forms, I'm just using spreadsheets to display data.
If excel is set to fullscreen mode the windows toolbar covers the
bottom portion of 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