Controlling opening size and position of application

K

Ken Warthen

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
 
S

Steve Yandl

Try something like,

With ActiveDocument.Windows(1)
..Height = 600
..Width = 800
..Top = 25
..Left = 50
End With


Steve
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top