Word 2004 wont open up on on page it left off on

B

Bible John

I have a 25 page document and everytime I open the file Word always opens up
at the very beginning of the document. This is a huge pain. How can this be
fixed? Thanks..


--
Romans 6:23 For the wages of sin is death,
but the gift of God is eternal life
in Christ Jesus our Lord.
CERM-Church Education Resource Ministries
http://www.cerm.info
 
J

John McGhie

You will need to set a bookmark in the document before you close it.

Shift + F5 should take you to the point of last edit, but there's a bug in
the function on the Mac, it is cleared when the document is closed.

Sloppy coding, but the bottom line is that the automatic function is broken,
you have to do it manually.

I use the following macros:

Public Sub markSpot()
Selection.BookMarks.Add Name:="macroMarkHere", Range:=Selection.Range
End Sub

Public Sub gotoSpot()
Selection.GoTo What:=wdGoToBookmark, Name:="macroMarkHere"
End Sub

Sub FileSave()
Call markSpot
ActiveDocument.Save
End Sub

The bottom one intercepts the File Save command and marks the location of
the cursor before the save. Run the middle macro to return to it. You
could add the middle macro to your document open macro if you wanted to.

Cheers


I have a 25 page document and everytime I open the file Word always opens up
at the very beginning of the document. This is a huge pain. How can this be
fixed? Thanks..

--
Don't wait for your answer, click here: http://www.word.mvps.org/

Please reply in the group. Please do NOT email me unless I ask you to.

John McGhie, Microsoft MVP, Word and Word:Mac
Sydney, Australia. mailto:[email protected]
 
C

Clive Huggan

You don't say what you actually want, only what you don't want. But if you
want to go to where you left off, keying Command-Option-z once the document
opens will achieve that. Time taken: less than a second.

Clive Huggan
=============
 

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

Similar Threads

Word 2004 as an HTML editor 14
Macro Viruses on the Mac 5
DOCX in Word 2004 7
How to build 3 level outlines in Word 2004 1
DOCX in Word 2004 3
Compressing attachments 3
Office 2004 UPDATE 11.5 2
Bouncing Mail 6

Top