(Msg. 1) Posted: Fri Oct 30, 2009 5:51 pm
Post subject: How do I open my Word Doc right where I ended Archived from groups: microsoft>public>word>docmanagement (more info?)
I have a 100 page journal converted from a "WordPerfect" program. In
WordPerfect, when I opened the document I automatically went to the end of
the document where I could pick up where I left off. In "Word" I open the
doc at page one. can I open the doc at the end of the doc?
(Msg. 2) Posted: Fri Oct 30, 2009 6:00 pm
Post subject: Re: How do I open my Word Doc right where I ended [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
In Word, open the doc, and press Ctrl+End to go to the last page, or
press Shift+F5 to go to the last editing point.
Taras49 wrote:
> I have a 100 page journal converted from a "WordPerfect" program. In
> WordPerfect, when I opened the document I automatically went to the end of
> the document where I could pick up where I left off. In "Word" I open the
> doc at page one. can I open the doc at the end of the doc?
(Msg. 3) Posted: Fri Oct 30, 2009 9:08 pm
Post subject: Re: How do I open my Word Doc right where I ended [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
On Fri, 30 Oct 2009 17:51:01 -0700, Taras49
<Taras49.TakeThisOut@discussions.microsoft.com> wrote:
>I have a 100 page journal converted from a "WordPerfect" program. In
>WordPerfect, when I opened the document I automatically went to the end of
>the document where I could pick up where I left off. In "Word" I open the
>doc at page one. can I open the doc at the end of the doc?
If you just want to go to the end of the document, press Ctrl+End.
If you want to return to the last place that was edited, wherever that
may be, when the document opens, press Shift+F5 (the shortcut for the
GoBack command).
If you have Word 2007, unfortunately GoBack works only for documents
saved in Word 97-2003 format. In earlier versions, if you have trouble
getting GoBack to work, see
http://www.word.mvps.org/FAQs/AppErrors/GoBackFix.htm.
--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.
(Msg. 4) Posted: Sat Oct 31, 2009 7:05 am
Post subject: Re: How do I open my Word Doc right where I ended [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
You can easily work around the problem with a few simple macros stored in
the normal template. These intercept the save and saveas routines to insert
a bookmark at the cursor position and locate the cursor at that bookmark (if
present) when the document is next opened. If you already have macros with
these names, incorporate the code in those macros.
Sub FileSave()
On Error Resume Next
ActiveDocument.Bookmarks.Add Range:=Selection.Range, name:="OpenAt"
ActiveDocument.Save
End Sub
Sub FileSaveAs()
On Error Resume Next
ActiveDocument.Bookmarks.Add Range:=Selection.Range, name:="OpenAt"
Dialogs(wdDialogFileSaveAs).Show
'Add filename and path to title bar
ActiveWindow.Caption = ActiveDocument.FullName
End Sub
I have added a couple of optional extra lines in the following (and one in
the previous macro) -
Sub AutoOpen()
'add filename and path to title bar
ActiveWindow.Caption = ActiveDocument.FullName
'turn on table grid line display
ActiveWindow.View.TableGridlines = True
If ActiveDocument.Bookmarks.Exists("OpenAt") = True Then
ActiveDocument.Bookmarks("OpenAt").Select
End If
End Sub
to ensure that gridlines are always displayed and to put the filename and
path in the Word title bar.
Taras49 wrote:
> I have a 100 page journal converted from a "WordPerfect" program. In
> WordPerfect, when I opened the document I automatically went to the
> end of the document where I could pick up where I left off. In
> "Word" I open the doc at page one. can I open the doc at the end of
> the doc?
All times are: Eastern Time (US & Canada) (change)
Page 1 of 1
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum