workspace but in work

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to have a sort of "workspace" in word. I need a file that will
open multiple word files at the same time.

Thanks a bunch.
 
Select all the files you want to open in Windows Explorer and open them from
there with Word
or
Create a macro containing statements similar to:

Sub OpenMyFiles()
Documents.Open FileName:="""c:\path\docname1.doc"""
Documents.Open FileName:="""c:\path\docname2.doc"""
End Sub

where the paths and docnames are those of your files
http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Select all the files you want to open in Windows Explorer and open them from
there with Word
or
Create a macro containing statements similar to:

Sub OpenMyFiles()
Documents.Open FileName:="""c:\path\docname1.doc"""
Documents.Open FileName:="""c:\path\docname2.doc"""
End Sub

where the paths and docnames are those of your files
http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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

Back
Top