Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
is it possible to change the size of the Excel window with VBA?
not minimize but set to certain height/width parameters -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...mming/200706/1 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
You could use something like the code below to change the size of the excel app Private Sub Workbook_Open() With Application .WindowState = xlNormal .Height = 200 .Width = 200 End With End Sub Hope it helps you out S |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
perfect thanks
Incidental wrote: Hi You could use something like the code below to change the size of the excel app Private Sub Workbook_Open() With Application .WindowState = xlNormal .Height = 200 .Width = 200 End With End Sub Hope it helps you out S -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...mming/200706/1 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
missing Active Window bar | New Users to Excel | |||
how to save a desired window size but hv window comeup fullsz by d | Excel Discussion (Misc queries) | |||
Active Window Question | Excel Discussion (Misc queries) | |||
I can't adjust the window size of an active workbook. | Excel Discussion (Misc queries) | |||
active window | Excel Programming |