View Options in- of uitschakelen. (VBA)

Status
Niet open voor verdere reacties.

Prozac1970

Gebruiker
Lid geworden
9 dec 2007
Berichten
65
VBA-code om view options in of uit te schakelen. True is ingeschakeld, false is uitgeschakeld.

GRTZ,

Prozac1970

Code:
'set view options
    Application.DisplayStatusBar = True
    With ActiveWindow
       .DisplayHorizontalScrollBar = True
       .DisplayVerticalScrollBar = True
       .DisplayVerticalRuler = True
       .DisplayScreenTips = True
       With .View
          .ShowAnimation = True
          .ShowPicturePlaceHolders = False
          .ShowFieldCodes = False
          .ShowBookmarks = False
          .FieldShading = wdFieldShadingWhenSelected
          .ShowTabs = False
          .ShowSpaces = False
          .ShowParagraphs = False
          .ShowHyphens = False
          .ShowHiddenText = False
          .ShowAll = False
          .ShowDrawings = True
          .ShowObjectAnchors = False
          .ShowTextBoundaries = False
          .ShowHighlight = True
          .TableGridlines = False
       End With
    End With
'end view options
 
Status
Niet open voor verdere reacties.
Steun Ons

Nieuwste berichten

Terug
Bovenaan Onderaan