I am trying to make an excel file maximize when the page is loaded. I don't see an onload event, does anyone know if there is one?
Lori
I am trying to make an excel file maximize when the page is loaded. I don't see an onload event, does anyone know if there is one?
Lori
If you right click on the Excel icon in the upper left corner of the Excel
window and select View code it wil take you to ThisWorkbook in the VBE. There
are two drop down's just above the code window. Change the one on the left to
workbook and the other to OnOpen...
--
HTH...
Jim Thomlinson
"loric" wrote:
>
> I am trying to make an excel file maximize when the page is loaded. I
> don't see an onload event, does anyone know if there is one?
>
> Lori
>
>
> --
> loric
> ------------------------------------------------------------------------
> loric's Profile: http://www.excelforum.com/member.php...o&userid=33920
> View this thread: http://www.excelforum.com/showthread...hreadid=539113
>
>
The dropdown on the right should be named "Workbook_Open" (not OnOpen).
Your (the OP's) code could look like:
Option Explicit
Private Sub Workbook_Open()
Application.WindowState = xlMaximized
ActiveWindow.WindowState = xlMaximized
End Sub
Jim Thomlinson wrote:
>
> If you right click on the Excel icon in the upper left corner of the Excel
> window and select View code it wil take you to ThisWorkbook in the VBE. There
> are two drop down's just above the code window. Change the one on the left to
> workbook and the other to OnOpen...
> --
> HTH...
>
> Jim Thomlinson
>
> "loric" wrote:
>
> >
> > I am trying to make an excel file maximize when the page is loaded. I
> > don't see an onload event, does anyone know if there is one?
> >
> > Lori
> >
> >
> > --
> > loric
> > ------------------------------------------------------------------------
> > loric's Profile: http://www.excelforum.com/member.php...o&userid=33920
> > View this thread: http://www.excelforum.com/showthread...hreadid=539113
> >
> >
--
Dave Peterson
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks