Thread
:
Re-size active window
View Single Post
#
2
Posted to microsoft.public.excel.programming
Incidental
external usenet poster
Posts: 226
Re-size active window
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
Reply With Quote
Incidental
View Public Profile
Find all posts by Incidental