> The PC is not running when hibernated. It is switched off and the active
> desktop settings are stored in a file which is used to restore everything..
> In any case it is not a good plan to allow automatic updates to take place
> without your acknowledgement - especially if you are liable to leave
> applications running overnight.
>
> --
> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Graham Mayor - Word MVP
>
> My web sitewww.gmayor.com
> Word MVP web site
http://word.mvps.org> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>
>
>
> grammatim wrote:
> > But the problem is that (in 2007) when you start a new Word session,
> > each document opens in a window sized and placed where the last-closed
> > document had been in the last Word session.
>
> > The problem with leaving Word running overnight is that if you're set
> > for automatic 3 am updates, all the documents will get closed anyway.
>
> > On Dec 13, 2:58 am, "Graham Mayor" <gma...[ at ]REMOVETHISmvps.org> wrote:
> >> Word version?
>
> >> The obvious approach would be to save all the documents at the end
> >> of the day - Shift+File+Save All in Word 2003 then Hibernate the PC.
> >> It will open again as you left it.
>
> >> With Word versions before 2007 you could run a macro that would open
> >> all the preferred documents at the last edit positions, but if the
> >> documents opened vary daily, or if some of those documents are
> >> protected forms or password protected it starts to get a whole lot
> >> more complicated. If the documents are Word 2007 documents the last
> >> edit postion is not saved when the document is closed so you would
> >> have to insert a marker in each document every time you save/close
> >> the document and recall that position, but the basic code is:
>
> >> Dim vFilename(2) As Variant 'increment the number by 1 for each
> >> additional file
> >> Dim i As Long
> >> vFilename(0) = "D:\My Documents\Word Documents\Filename1.doc"
> >> vFilename(1) = "D:\My Documents\Word Documents\Filename2.doc"
> >> vFilename(2) = "D:\My Documents\Word Documents\Filename3.doc"
> >> 'etc
>
> >> For i = LBound(vFilename) To UBound(vFilename)
> >> Documents.Open FileName:=vFilename(i)
> >> Application.GoBack
> >> Next i
>
> >> --
> >> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> >> Graham Mayor - Word MVP
>
> >> My web sitewww.gmayor.com
> >> Word MVP web site
http://word.mvps.org> >> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>
> >> aryev wrote:
> >>> Is there a way to close Word and later reopen it and have the same
> >>> documents I was last working on reopen in the same positions, and on
> >>> the same pages?
>
> >>> I keep several documents open at once, all a few hundred pages long,
> >>> and it's several minutes every day to get everything in order.
> >>> Which, you know, starts to add up.
>
> >>> Some kind of "Remember where I was command" would be excellent.
>
> >>> Thanks, you MVP question answerers rock.--