Master Document and Print Layout View 
Author Message
 Master Document and Print Layout View

Someone here in my office wants to have people be able to
open a master document and have the print layout view
selected.

They do not want the user to open the master document,
switch to outline view or whatever.

Is there a way for the file to just open in Print Layout?

Thanks in advance,



Fri, 26 Aug 2005 22:25:34 GMT  
 Master Document and Print Layout View
Gwen

The "best" way to do this depends on a couple of things. The first is the
template the document is based on and whether you want this to happen just
for this particular document or for all documents created from the
template.

I'll answer assuming you only want to do it for this particular document.
If this is not the case please post a followup message.

In the documents "ThisDocument" module paste the following code:

Private Sub Document_New()
    With ActiveWindow
        If .View.SplitSpecial = wdPaneNone Then
            .ActivePane.View.Type = wdPrintView
        Else
            .View.Type = wdPrintView
        End If
    End With
End Sub

Every time you open the document it will be forced to Print Layout view.

Every time you save a document it's View mode is saved as well. SO if you
save the document in Print Layout view it will reopen in  Print Layout
view.

I hope this helps + Cheers - Peter



Quote:
> Someone here in my office wants to have people be able to
> open a master document and have the print layout view
> selected.

> They do not want the user to open the master document,
> switch to outline view or whatever.

> Is there a way for the file to just open in Print Layout?

> Thanks in advance,



Sat, 27 Aug 2005 12:07:08 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Open All Documents in Print Layout View

2. How to update document master shapes from template master shapes

3. Expanding Master Document for Printing?

4. Data Form Wizard with Master/Detail Form-Layout

5. Updating Documents Created From a Master Document Template

6. open , view and print a Word97 document in VB 4 or 5

7. Help:Printing Cystal Report to a print file without file layout

8. Help:Printing Cystal Report to a print file without file layout

9. page layout view and styles

10. Exporting New Master Category list and custom view

11. losing layout when using copy/paste in vba between 2 documents

12. The layout of this document is too complex, please save now

 

 
Powered by phpBB® Forum Software