Way back in the days of Word 6 I had a macro to move the cursor to the
point at which I was last working, Goback I think was the command, but
I'm not sure. What is the VBA equivalent?

Thanks

David

Re: Autoopen Macro by TF

TF
Sat Oct 04 17:37:06 CDT 2003

David

The command is still available and assigned to the F5 key.

--
Terry Farrell - Word MVP
http://www.mvps.org/word/

"David" <rhinds_no_spam_@cwnet.com> wrote in message
news:sdiunvct9nb89mphnmqm2q6bjt18iv2e3t@4ax.com...
Way back in the days of Word 6 I had a macro to move the cursor to the
point at which I was last working, Goback I think was the command, but
I'm not sure. What is the VBA equivalent?

Thanks

David



Re: Autoopen Macro by David

David
Sat Oct 04 18:00:33 CDT 2003

On Sat, 4 Oct 2003 22:37:06 +0000 (UTC), "TF" <terryfarrell@msn.com>
wrote:

>David
>
>The command is still available and assigned to the F5 key.

In my copy of Word 97 F5 brings up the "Find" dialog box. SHIFT+F5
does go back in an open document, but once it has been closed it
doesn't work when it is re-opened.

David


Re: Autoopen Macro by Herb

Herb
Sat Oct 04 18:07:05 CDT 2003

Actually, it's assigned to Shift+F5. To get your AutoOpen macro to work, the
easiest way would be to record it. You'll end up with something like:

Sub AutoOpen()
Application.GoBack
End Sub


--
Herb Tyson MS MVP
Please respond in the newsgroups so everyone can follow along.
http://www.herbtyson.com
"TF" <terryfarrell@msn.com> wrote in message
news:blni2i$grm$1@titan.btinternet.com...
> David
>
> The command is still available and assigned to the F5 key.
>
> --
> Terry Farrell - Word MVP
> http://www.mvps.org/word/
>
> "David" <rhinds_no_spam_@cwnet.com> wrote in message
> news:sdiunvct9nb89mphnmqm2q6bjt18iv2e3t@4ax.com...
> Way back in the days of Word 6 I had a macro to move the cursor to the
> point at which I was last working, Goback I think was the command, but
> I'm not sure. What is the VBA equivalent?
>
> Thanks
>
> David
>
>



Re: Autoopen Macro by Suzanne

Suzanne
Sat Oct 04 18:24:43 CDT 2003

But if you're thinking of storing the macro in the document, keep in mind
that your document will then you a macro warning on opening, which will
require an extra click or two. Much easier just to hit Shift+F5 after
opening!

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://www.mvps.org/word
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Herb Tyson [MVP]" <herb@1x2y3z.xnw> wrote in message
news:O4ry8wsiDHA.1808@TK2MSFTNGP09.phx.gbl...
> Actually, it's assigned to Shift+F5. To get your AutoOpen macro to work,
the
> easiest way would be to record it. You'll end up with something like:
>
> Sub AutoOpen()
> Application.GoBack
> End Sub
>
>
> --
> Herb Tyson MS MVP
> Please respond in the newsgroups so everyone can follow along.
> http://www.herbtyson.com
> "TF" <terryfarrell@msn.com> wrote in message
> news:blni2i$grm$1@titan.btinternet.com...
> > David
> >
> > The command is still available and assigned to the F5 key.
> >
> > --
> > Terry Farrell - Word MVP
> > http://www.mvps.org/word/
> >
> > "David" <rhinds_no_spam_@cwnet.com> wrote in message
> > news:sdiunvct9nb89mphnmqm2q6bjt18iv2e3t@4ax.com...
> > Way back in the days of Word 6 I had a macro to move the cursor to the
> > point at which I was last working, Goback I think was the command, but
> > I'm not sure. What is the VBA equivalent?
> >
> > Thanks
> >
> > David
> >
> >
>
>


Re: Autoopen Macro by David

David
Sat Oct 04 19:14:53 CDT 2003

On Sat, 4 Oct 2003 18:24:43 -0500, "Suzanne S. Barnhill"
<sbarnhill@mvps.org> wrote:

>But if you're thinking of storing the macro in the document, keep in mind
>that your document will then you a macro warning on opening, which will
>require an extra click or two. Much easier just to hit Shift+F5 after
>opening!

But Shift+F5 doesn't work when re-opening, at least in my copy anyway.

David

Re: Autoopen Macro by Suzanne

Suzanne
Sat Oct 04 20:49:47 CDT 2003

Works for me, but IIRC, there's a bug in GoBack in Word 2002. See
http://www.mvps.org/word/FAQs/AppErrors/GoBackFix.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://www.mvps.org/word
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"David" <rhinds_no_spam_@cwnet.com> wrote in message
news:jhounvgg6kk8l6mhjhkeurv971ben3co5s@4ax.com...
> On Sat, 4 Oct 2003 18:24:43 -0500, "Suzanne S. Barnhill"
> <sbarnhill@mvps.org> wrote:
>
> >But if you're thinking of storing the macro in the document, keep in mind
> >that your document will then you a macro warning on opening, which will
> >require an extra click or two. Much easier just to hit Shift+F5 after
> >opening!
>
> But Shift+F5 doesn't work when re-opening, at least in my copy anyway.
>
> David


Re: Autoopen Macro by Herb

Herb
Sat Oct 04 20:55:35 CDT 2003

It works here, unless multiple documents are open, in which case Shift+F5
takes me back to the last document/editing location of the files currently
open (cycles among the current location and the previous 3 locations where
editing occurred, even if those locations are in different open documents).
Note, here, Shift+F5 right after opening works only with .doc and .dot
files, but not with others, such at .rtf.

--
Herb Tyson MS MVP
Please respond in the newsgroups so everyone can follow along.
http://www.herbtyson.com
"David" <rhinds_no_spam_@cwnet.com> wrote in message
news:jhounvgg6kk8l6mhjhkeurv971ben3co5s@4ax.com...
> On Sat, 4 Oct 2003 18:24:43 -0500, "Suzanne S. Barnhill"
> <sbarnhill@mvps.org> wrote:
>
> >But if you're thinking of storing the macro in the document, keep in mind
> >that your document will then you a macro warning on opening, which will
> >require an extra click or two. Much easier just to hit Shift+F5 after
> >opening!
>
> But Shift+F5 doesn't work when re-opening, at least in my copy anyway.
>
> David



Re: Autoopen Macro by Jay

Jay
Sat Oct 04 20:59:00 CDT 2003

David wrote:
> On Sat, 4 Oct 2003 18:24:43 -0500, "Suzanne S. Barnhill"
> <sbarnhill@mvps.org> wrote:
>
>> But if you're thinking of storing the macro in the document, keep in
>> mind that your document will then you a macro warning on opening,
>> which will require an extra click or two. Much easier just to hit
>> Shift+F5 after opening!
>
> But Shift+F5 doesn't work when re-opening, at least in my copy anyway.
>
> David

It's a known bug. See http://www.mvps.org/word/FAQs/AppErrors/GoBackFix.htm
for the fix.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://www.mvps.org/word



Re: Autoopen Macro by TF

TF
Sun Oct 05 04:25:34 CDT 2003

David

Sorry about the slip, but as my colleagues have pointed out, it is indeed
Shift+F5 and it has a bug in Word XP!

Terry

"David" <rhinds_no_spam_@cwnet.com> wrote in message
news:qujunvc6qn2n16ca8grfdktlkil1p1tmf2@4ax.com...
On Sat, 4 Oct 2003 22:37:06 +0000 (UTC), "TF" <terryfarrell@msn.com>
wrote:

>David
>
>The command is still available and assigned to the F5 key.

In my copy of Word 97 F5 brings up the "Find" dialog box. SHIFT+F5
does go back in an open document, but once it has been closed it
doesn't work when it is re-opened.

David



Re: Autoopen Macro by David

David
Sun Oct 05 15:40:27 CDT 2003

On Sat, 4 Oct 2003 21:55:35 -0400, "Herb Tyson [MVP]"
<herb@1x2y3z.xnw> wrote:

>Note, here, Shift+F5 right after opening works only with .doc and .dot
>files, but not with others, such at .rtf.

That's the problem, I've been saving as .rtf. Will revert to .doc

Thanks to all,

David