Default gridlines

L

Lorrie

Can anyone tell me how to re-set "show gridlines" as the
deault. Somehow, one of the ladies here managed to
change it "Hide Gridlines", now whenever she brings up a
label she thinks that it is a blank page! I can't find
how to change it back.

Thanks for your help.
 
G

garfield-n-odie

Hi, Lorrie. In Word, click on Table | Show Gridlines. Word should
remember this setting until you change it again.
 
G

Graham Mayor

The last used setting is retained, but can be overridden with auto macros
eg
Sub AutoOpen()
ActiveWindow.View.TableGridlines = True
End Sub
Sub AutoNew()
ActiveWindow.View.TableGridlines = True
End Sub

See http://www.gmayor.com/installing_macro.htm

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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Top