B blackbox via OfficeKB.com Jun 19, 2007 #1 is it possible to change the size of the Excel window with VBA? not minimize but set to certain height/width parameters
is it possible to change the size of the Excel window with VBA? not minimize but set to certain height/width parameters
I Incidental Jun 19, 2007 #2 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
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
B blackbox via OfficeKB.com Jun 19, 2007 #3 perfect thanks 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 Click to expand...
perfect thanks 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 Click to expand...