![]() |
Is there an onload event in Excel?
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 |
Is there an onload event in Excel?
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 |
Is there an onload event in Excel?
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 |
All times are GMT +1. The time now is 12:23 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com