Link to home
Start Free TrialLog in
Avatar of gizmorama
gizmorama

asked on

Word Graphics dissapear

Word graphics (lines, circles, other graphics created using the graphics toolbar)are visible in Page Layout view, but not in Normal view.
ASKER CERTIFIED SOLUTION
Avatar of cri
cri
Flag of Switzerland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of gizmorama
gizmorama

ASKER

OK, is there a way to save the document so that the next user always opens the document in page layout view?
I did find that creating a pdf locks in the page layout view (after a fashion)
Yup, I found the same wordage on further investigation in the help file. It's sort of like a cookbook in which you are looking for Roast Beef, can't find it. It's listed under meat dishes, or main meals.
The View mode is saved with the document. This gives you two alternatives:

a) Find out who saves it in Normal View and give him/her a faster PC and/or optimize Word

b) This code, but it will trigger the macro warning

Private Sub Document_Open()
  'Ensures that doc always will open in Page Layout, regardless in
  'which mode it was saved
  'Place this code at ThisDocument level
  With ActiveWindow
    If .View.SplitSpecial = wdPaneNone Then
      .ActivePane.View.Type = wdPageView
    Else
      .View.Type = wdPageView
    End If
  End With
End Sub
The first part of your answer is the best since the documents are published in read only form.
I'll accept the answer as stated. Please comment agin so I can accept comment as answer.