Is it possible to have Word open a document and go straight to the
point the user was last editting? I'm thinking about saving selection
object data in a custom property during the BeforeSave event and then
read it during DocumentOpen. Any ideas?

Thanks,
B

Re: Open document at point user last was working? by JGM

JGM
Thu Dec 11 07:34:58 CST 2003

Hi B,

Have you tried

Application.GoBack

in the Document_Open event?
(This is SHIFT-F5 on the keyboard).

HTH
Cheers!

--
_______________________________________
Jean-Guy Marcil
jmarcil@sympatico.ca

"Byron" <roho50@hotmail.com> a écrit dans le message de news:
1afd2af6.0312110500.4e059ea5@posting.google.com...
> Is it possible to have Word open a document and go straight to the
> point the user was last editting? I'm thinking about saving selection
> object data in a custom property during the BeforeSave event and then
> read it during DocumentOpen. Any ideas?
>
> Thanks,
> B



Re: Open document at point user last was working? by roho50

roho50
Thu Dec 11 12:27:49 CST 2003

"JGM" <no-spam@leaveme.alone> wrote in message news:<#0BSvq#vDHA.2136@TK2MSFTNGP10.phx.gbl>...
> Hi B,
>
> Have you tried
>
> Application.GoBack
>
> in the Document_Open event?
> (This is SHIFT-F5 on the keyboard).
>
> HTH
> Cheers!
>
> --
> _______________________________________
> Jean-Guy Marcil
> jmarcil@sympatico.ca
>
> "Byron" <roho50@hotmail.com> a écrit dans le message de news:
> 1afd2af6.0312110500.4e059ea5@posting.google.com...
> > Is it possible to have Word open a document and go straight to the
> > point the user was last editting? I'm thinking about saving selection
> > object data in a custom property during the BeforeSave event and then
> > read it during DocumentOpen. Any ideas?
> >
> > Thanks,
> > B


Thanks for helping a newbie. I wish I could have found that in the
object browser and that I knew Word better...