MACRO question - "Automatically open file when load Word"

J

Jim In Minneapolis

Hi.

Does anybody know how to create a macro that will automatically open a
specific Word document . . . EVERY time I open Word (2007)?

Here's the file path: C:\MS Word Documents\mydocument.doc

So, EVERY time I load Word . . . I want this file to display on the screen(I
use it all day long!)

Thanks so much.
 
J

Jay Freedman

Jim said:
Hi.

Does anybody know how to create a macro that will automatically open a
specific Word document . . . EVERY time I open Word (2007)?

Here's the file path: C:\MS Word Documents\mydocument.doc

So, EVERY time I load Word . . . I want this file to display on the
screen(I use it all day long!)

Thanks so much.

Don't bother with a macro -- and don't screw up your Word configuration.
Just make a desktop shortcut to the specific document, and double-click that
shortcut each morning instead of the shortcut for Word.

Making the shortcut is easy -- open the folder that contains the document
file, right-click the document, and choose Send To > Desktop.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
J

Jean-Guy Marcil

Jim In Minneapolis said:
Hi.

Does anybody know how to create a macro that will automatically open a
specific Word document . . . EVERY time I open Word (2007)?

Here's the file path: C:\MS Word Documents\mydocument.doc

So, EVERY time I load Word . . . I want this file to display on the screen(I
use it all day long!)

Put this sub in a module of your Normal.dot (or any other global template -
Stored in Word's Start Up folder):


Sub AutoExec()

Documents.Open "C:\MS Word Documents\mydocument.doc"

End Sub
 
J

Jean-Guy Marcil

Jay Freedman said:
Don't bother with a macro -- and don't screw up your Word configuration.
Just make a desktop shortcut to the specific document, and double-click that
shortcut each morning instead of the shortcut for Word.

Ah! Very good!
Sometimes I can't see the forest because of the tree I'm staring at...
 
J

Jim In Minneapolis

Great answer, Jean-Guy!

Thanks so much. It works perfectly.

I appreciate your taking the time to help me out.

God bless you always.

Jim
 
J

Jean-Guy Marcil

Jim In Minneapolis said:
Great answer, Jean-Guy!

Thanks so much. It works perfectly.

Glad I could help, but really, Jay's idea is much easier to implement and
maintain...
 

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