Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This may be a stretch, but what I did was make a very
small section of a spreadsheet a little program. Is there a way to set the windowsize of the workbook when it opens? If I new VB I could make this little program on a canvas that opens to the size that I want. I can do it in Excel but I don't need the spreadsheet or Excel (for that matter) to open maximized. thanks for the help, matt |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Paste the following code into the ThisWorkbook code module:
Private Sub Workbook_Open() With Application .WindowState = xlNormal .Height = 300 .Width = 500 .Top = 100 .Left = 100 End With End Sub Adjust the numbers to suit. -- Vasant "Powlaz" wrote in message ... This may be a stretch, but what I did was make a very small section of a spreadsheet a little program. Is there a way to set the windowsize of the workbook when it opens? If I new VB I could make this little program on a canvas that opens to the size that I want. I can do it in Excel but I don't need the spreadsheet or Excel (for that matter) to open maximized. thanks for the help, matt |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you, very helpful!
Matt -----Original Message----- Paste the following code into the ThisWorkbook code module: Private Sub Workbook_Open() With Application .WindowState = xlNormal .Height = 300 .Width = 500 .Top = 100 .Left = 100 End With End Sub Adjust the numbers to suit. -- Vasant "Powlaz" wrote in message ... This may be a stretch, but what I did was make a very small section of a spreadsheet a little program. Is there a way to set the windowsize of the workbook when it opens? If I new VB I could make this little program on a canvas that opens to the size that I want. I can do it in Excel but I don't need the spreadsheet or Excel (for that matter) to open maximized. thanks for the help, matt . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Default Opening Window Size? | Excel Discussion (Misc queries) | |||
can i size an Excel workbook window's opening size? | Excel Discussion (Misc queries) | |||
finding out File size before opening it | Excel Discussion (Misc queries) | |||
excel file late for opening big size 20.60 mb ? | Excel Discussion (Misc queries) | |||
problems opening files larger than 1mb in size | Excel Discussion (Misc queries) |