I would like to create a routine to control the size and position of the Word
application when it opens, so that if the application window gets moved or
resized during any usage, the next time the application is launched it will
return to the defined size and position established in the routine. Any
suggestions on where to start or where to find relevant information is
greatly appreciated. TIA.
Ken
Steve Yandl - 08 Nov 2007 16:04 GMT
Try something like,
With ActiveDocument.Windows(1)
.Height = 600
.Width = 800
.Top = 25
.Left = 50
End With
Steve
>I would like to create a routine to control the size and position of the
>Word
[quoted text clipped - 6 lines]
>
> Ken